mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-10-08 14:51:49 +00:00
125606 rmunteanu: Merged 5.1.1 (5.1.1) to 5.1.N (5.1.2) 125515 slanglois: MNT-16155 Update source headers - add new Copyrights for Java and JSP source files + automatic check in the build git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@125788 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
160 lines
5.1 KiB
Java
160 lines
5.1 KiB
Java
/*
|
|
* #%L
|
|
* Alfresco Repository
|
|
* %%
|
|
* Copyright (C) 2005 - 2016 Alfresco Software Limited
|
|
* %%
|
|
* This file is part of the Alfresco software.
|
|
* If the software was purchased under a paid Alfresco license, the terms of
|
|
* the paid license agreement will prevail. Otherwise, the software is
|
|
* provided under the following open source license terms:
|
|
*
|
|
* 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/>.
|
|
* #L%
|
|
*/
|
|
package org.alfresco.repo.bulkimport;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Collections;
|
|
import java.util.HashMap;
|
|
import java.util.HashSet;
|
|
import java.util.Map;
|
|
import java.util.Set;
|
|
|
|
import org.alfresco.service.namespace.QName;
|
|
|
|
/**
|
|
* Definition of a metadata loader - a class that can load metadata for a file from some other source.
|
|
* Note that metadata loaders can be "chained", so an implementation needs to be careful about how the
|
|
* Metadata object is populated in the populateMetadata method.
|
|
*
|
|
* Implementors also need to be careful when configuring the bulk import process, as the order in which
|
|
* metadata loaders are configured into a bulk importer is the order of precendence (from lowest to
|
|
* highest).
|
|
*
|
|
* @since 4.0
|
|
*/
|
|
public interface MetadataLoader
|
|
{
|
|
/**
|
|
* Metadata filename suffix (excluding file-type specific ending)
|
|
*/
|
|
public final static String METADATA_SUFFIX = ".metadata.";
|
|
|
|
/**
|
|
* @return The extension for files used to store this metadata, minus the stop character (.) e.g. "properties", "xml", "json", etc.
|
|
*/
|
|
String getMetadataFileExtension();
|
|
|
|
|
|
/**
|
|
* Method that populates the type, aspects and properties to attach to a given file or space.
|
|
*
|
|
* @param contentAndMetadata The contentAndMetadata from which to obtain the metadata <i>(will not be null)</i>.
|
|
* @param metadata The metadata object to populate <i>(will not be null, and may already be partially populated)</i>.
|
|
*/
|
|
void loadMetadata(final ImportableItem.ContentAndMetadata contentAndMetadata, MetadataLoader.Metadata metadata);
|
|
|
|
|
|
/**
|
|
* Class used to encapsulate the type, aspects and property values for a single file or folder.
|
|
*/
|
|
public final class Metadata
|
|
{
|
|
private QName type;
|
|
private Set<QName> aspects;
|
|
private Map<QName, Serializable> properties;
|
|
|
|
|
|
public Metadata()
|
|
{
|
|
this.type = null;
|
|
aspects = new HashSet<QName>();
|
|
properties = new HashMap<QName, Serializable>();
|
|
}
|
|
|
|
|
|
/**
|
|
* @return the type
|
|
*/
|
|
public QName getType()
|
|
{
|
|
return(type);
|
|
}
|
|
|
|
|
|
/**
|
|
* @param type The type to set in this metadata object <i>(must not be null)</i>.
|
|
*/
|
|
public void setType(final QName type)
|
|
{
|
|
// PRECONDITIONS
|
|
assert type != null : "type must not be null.";
|
|
|
|
// Body
|
|
this.type = type;
|
|
}
|
|
|
|
|
|
/**
|
|
* @return The set of aspects in this metadata object <i>(will not be null, but may be empty)</i>.
|
|
*/
|
|
public Set<QName> getAspects()
|
|
{
|
|
return(Collections.unmodifiableSet(aspects));
|
|
}
|
|
|
|
|
|
/**
|
|
* @param aspect An aspect to add to this metadata object <i>(must not be null)</i>.
|
|
*/
|
|
public void addAspect(final QName aspect)
|
|
{
|
|
// PRECONDITIONS
|
|
assert aspect != null : "aspect must not be null.";
|
|
|
|
// Body
|
|
aspects.add(aspect);
|
|
}
|
|
|
|
|
|
/**
|
|
* @return The properties in this metadata object <i>(will not be null, but may be empty)</i>.
|
|
*/
|
|
public Map<QName, Serializable> getProperties()
|
|
{
|
|
return(Collections.unmodifiableMap(properties));
|
|
}
|
|
|
|
|
|
/**
|
|
* Adds a property and its value to this metadata object.
|
|
*
|
|
* @param property The property to populate <i>(must not be null)</i>.
|
|
* @param value The value of the property <i>(may be null)</i>.
|
|
*/
|
|
public void addProperty(final QName property, final Serializable value)
|
|
{
|
|
// PRECONDITIONS
|
|
assert property != null : "property must not be null";
|
|
|
|
// Body
|
|
properties.put(property, value);
|
|
}
|
|
|
|
}
|
|
|
|
|
|
}
|