mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
26007: ALF-7070: - null property values - mltext properties include locales and values - content properties include locale, encoding, mimetype, size, id - node pre-loading support - wip - paths include direct paths and category paths 26058: ALF-7070 - fixed null content encoding, mimetype 26301: Merged BRANCHES/DEV/BM to BRANCHES/DEV/SWIFT: 24572: WebDAV - switch lock check (to get prop before status) and use getPrimaryParent 24574: WebDAV - getNodeLockInfo (add request caches for indirect lookup) 24833: BM - WebDAV perf tweak (getNodeLockInfo - including PutMethod / checkNode) (note: related to ALF-6267 / ALF-6224) 26319: Removed System.out messages 26320: Moved away from BaseSpringTest 26321: WIP: ALF-7339: RSOLR 009: Index track and build from SOLR - track simple properties (no locale, no dual tokenisation, no sort, no content, no ml text, no acls) 26322: Merged BRANCHES/DEV/BM to BRANCHES/DEV/SWIFT: 24745: (RECORD ONLY) Adjust Audit Model Registry for Subsystem read write locks 24789: (RECORD ONLY) Remove unsafe use of SimpleDateFormat 24862: (RECORD ONLY) Test content read with larger buffer size 26331: Fixed ibatis -> mybatis merge issues 26350: Build fix: iBatis -> myBatis merge error 26354: Removed svn:mergeinfo git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@28257 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
126 lines
3.0 KiB
Java
126 lines
3.0 KiB
Java
/*
|
|
* Copyright (C) 2005-2011 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 java.io.Serializable;
|
|
import java.util.Collection;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import java.util.Set;
|
|
|
|
import org.alfresco.service.cmr.repository.ChildAssociationRef;
|
|
import org.alfresco.service.cmr.repository.NodeRef;
|
|
import org.alfresco.service.cmr.repository.Path;
|
|
import org.alfresco.service.namespace.QName;
|
|
import org.alfresco.util.Pair;
|
|
|
|
/**
|
|
*
|
|
* @since 4.0
|
|
*
|
|
*/
|
|
public class NodeMetaDataEntity implements NodeMetaData
|
|
{
|
|
private Long nodeId;
|
|
private NodeRef nodeRef;
|
|
private String owner;
|
|
private QName nodeType;
|
|
private Long aclId;
|
|
private Map<QName, Serializable> properties;
|
|
private Set<QName> aspects;
|
|
// private List<Path> paths;
|
|
private Collection<Pair<Path, QName>> paths;
|
|
private List<ChildAssociationRef> childAssocs;
|
|
|
|
public String getOwner()
|
|
{
|
|
return owner;
|
|
}
|
|
public void setOwner(String owner)
|
|
{
|
|
this.owner = owner;
|
|
}
|
|
public NodeRef getNodeRef()
|
|
{
|
|
return nodeRef;
|
|
}
|
|
public void setNodeRef(NodeRef nodeRef)
|
|
{
|
|
this.nodeRef = nodeRef;
|
|
}
|
|
public Collection<Pair<Path, QName>> getPaths()
|
|
{
|
|
return paths;
|
|
}
|
|
public void setPaths(Collection<Pair<Path, QName>> paths)
|
|
{
|
|
this.paths = paths;
|
|
}
|
|
public QName getNodeType()
|
|
{
|
|
return nodeType;
|
|
}
|
|
public void setNodeType(QName nodeType)
|
|
{
|
|
this.nodeType = nodeType;
|
|
}
|
|
public Long getNodeId()
|
|
{
|
|
return nodeId;
|
|
}
|
|
public void setNodeId(Long nodeId)
|
|
{
|
|
this.nodeId = nodeId;
|
|
}
|
|
public Long getAclId()
|
|
{
|
|
return aclId;
|
|
}
|
|
public void setAclId(Long aclId)
|
|
{
|
|
this.aclId = aclId;
|
|
}
|
|
public Map<QName, Serializable> getProperties()
|
|
{
|
|
return properties;
|
|
}
|
|
public void setProperties(Map<QName, Serializable> properties)
|
|
{
|
|
this.properties = properties;
|
|
}
|
|
public Set<QName> getAspects()
|
|
{
|
|
return aspects;
|
|
}
|
|
public void setAspects(Set<QName> aspects)
|
|
{
|
|
this.aspects = aspects;
|
|
}
|
|
public List<ChildAssociationRef> getChildAssocs()
|
|
{
|
|
return childAssocs;
|
|
}
|
|
public void setChildAssocs(List<ChildAssociationRef> childAssocs)
|
|
{
|
|
this.childAssocs = childAssocs;
|
|
}
|
|
|
|
|
|
}
|