Search in sources :

Example 1 with MutableTypeDefinition

use of org.apache.chemistry.opencmis.commons.definitions.MutableTypeDefinition in project structr by structr.

the class CMISRepositoryService method extendTypeDefinition.

private MutableTypeDefinition extendTypeDefinition(final Class<? extends GraphObject> type, final Boolean includePropertyDefinitions) {
    final String typeName = type.getSimpleName();
    MutableTypeDefinition result = null;
    try {
        // instantiate class to obtain runtime CMIS information
        final GraphObject obj = type.newInstance();
        if (obj != null) {
            final CMISInfo info = obj.getCMISInfo();
            if (info != null) {
                final BaseTypeId baseTypeId = info.getBaseTypeId();
                if (baseTypeId != null) {
                    switch(baseTypeId) {
                        case CMIS_DOCUMENT:
                            result = getDocumentTypeDefinition(typeName, includePropertyDefinitions, false);
                            break;
                        case CMIS_FOLDER:
                            result = getFolderTypeDefinition(typeName, includePropertyDefinitions, false);
                            break;
                        case CMIS_ITEM:
                            result = getItemTypeDefinition(typeName, includePropertyDefinitions, false);
                            break;
                        case CMIS_POLICY:
                            result = getPolicyTypeDefinition(typeName, includePropertyDefinitions, false);
                            break;
                        case CMIS_RELATIONSHIP:
                            result = getRelationshipTypeDefinition(typeName, includePropertyDefinitions, false);
                            break;
                        case CMIS_SECONDARY:
                            result = getSecondaryTypeDefinition(typeName, includePropertyDefinitions, false);
                            break;
                    }
                    if (result != null) {
                        // initialize..
                        for (final PropertyKey key : StructrApp.getConfiguration().getPropertySet(type, PropertyView.All)) {
                            final MutablePropertyDefinition property = createProperty(type, key);
                            if (property != null) {
                                result.addPropertyDefinition(property);
                            }
                        }
                    }
                }
            }
        }
    } catch (final IllegalAccessException | InstantiationException iex) {
        logger.warn("", iex);
    }
    return result;
}
Also used : MutableTypeDefinition(org.apache.chemistry.opencmis.commons.definitions.MutableTypeDefinition) CMISInfo(org.structr.cmis.CMISInfo) BaseTypeId(org.apache.chemistry.opencmis.commons.enums.BaseTypeId) MutablePropertyDefinition(org.apache.chemistry.opencmis.commons.definitions.MutablePropertyDefinition) GraphObject(org.structr.core.GraphObject) PropertyKey(org.structr.core.property.PropertyKey)

Aggregations

MutablePropertyDefinition (org.apache.chemistry.opencmis.commons.definitions.MutablePropertyDefinition)1 MutableTypeDefinition (org.apache.chemistry.opencmis.commons.definitions.MutableTypeDefinition)1 BaseTypeId (org.apache.chemistry.opencmis.commons.enums.BaseTypeId)1 CMISInfo (org.structr.cmis.CMISInfo)1 GraphObject (org.structr.core.GraphObject)1 PropertyKey (org.structr.core.property.PropertyKey)1