mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-07 18:25:23 +00:00
70000: Merged V4.2-BUG-FIX (4.2.3) to HEAD-BUG-FIX (4.3/Cloud) 69998: Merged V4.1-BUG-FIX (4.1.9) to V4.2-BUG-FIX (4.2.3) 69997: MNT-11437: Merged V4.1.5 (4.1.5.14) to V4.1-BUG-FIX (4.1.9) 69995: Revised fix for MNT-11107 Documents uploaded by another user are not filtered via tags in My Files Fix for MNT-11427 Impossible to start reindex process for bm-0010 and bm-0013 tests: api/solr/aclchangesets return status:502 - fixed as described - no complex join - pull back and check inherited shared are indexed when the defining acls is indexed if it exists - will also be indexed if created lazily git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@70001 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
73 lines
1.8 KiB
Java
73 lines
1.8 KiB
Java
/*
|
|
* Copyright (C) 2005-2014 Alfresco Software Limited.
|
|
*
|
|
* This file is part of Alfresco
|
|
*
|
|
* Alfresco is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Alfresco is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package org.alfresco.repo.domain.solr;
|
|
|
|
import org.alfresco.repo.solr.Acl;
|
|
|
|
/**
|
|
* Interface for SOLR changeset objects.
|
|
*
|
|
* @author Derek Hulley
|
|
* @since 4.0
|
|
*/
|
|
public class AclEntity implements Acl
|
|
{
|
|
private Long id;
|
|
private Long inheritedId;
|
|
private Long aclChangeSetId;
|
|
|
|
@Override
|
|
public String toString()
|
|
{
|
|
return "AclEntity [id=" + id + ", inheritedId=" + inheritedId + ", aclChangeSetId=" + aclChangeSetId + "]";
|
|
}
|
|
|
|
@Override
|
|
public Long getId()
|
|
{
|
|
return id;
|
|
}
|
|
|
|
public void setId(Long id)
|
|
{
|
|
this.id = id;
|
|
}
|
|
|
|
@Override
|
|
public Long getAclChangeSetId()
|
|
{
|
|
return aclChangeSetId;
|
|
}
|
|
public void setAclChangeSetId(Long aclChangeSetId)
|
|
{
|
|
this.aclChangeSetId = aclChangeSetId;
|
|
}
|
|
|
|
@Override
|
|
public Long getInheritedId()
|
|
{
|
|
return inheritedId;
|
|
}
|
|
|
|
public void setInheritedId(Long inheritedId)
|
|
{
|
|
this.inheritedId = inheritedId;
|
|
}
|
|
}
|