Search in sources :

Example 1 with Updatability

use of org.apache.chemistry.opencmis.commons.enums.Updatability in project structr by structr.

the class CMISRepositoryService method createProperty.

private MutablePropertyDefinition createProperty(final Class type, final PropertyKey key) {
    // include all dynamic and CMIS-enabled keys in definition
    if (key.isDynamic() || key.isCMISProperty()) {
        // only include primitives here
        final TypeDefinitionFactory factory = TypeDefinitionFactory.newInstance();
        final PropertyType dataType = key.getDataType();
        if (dataType != null) {
            final String propertyId = key.jsonName();
            final String displayName = propertyId;
            final String description = StringUtils.capitalize(propertyId);
            final Class declaringClass = key.getDeclaringClass();
            final boolean isInherited = !type.getSimpleName().equals(declaringClass.getSimpleName());
            final Cardinality cardinality = Cardinality.SINGLE;
            final Updatability updatability = Updatability.READWRITE;
            final boolean required = key.isNotNull();
            final boolean queryable = key.isIndexed();
            final boolean orderable = key.isIndexed();
            final MutablePropertyDefinition property = factory.createPropertyDefinition(propertyId, displayName, description, dataType, cardinality, updatability, isInherited, required, queryable, orderable);
            // add enum choices if present
            final Class valueType = key.valueType();
            if (valueType != null && valueType.isEnum()) {
                final List<Choice> choices = new LinkedList<>();
                for (final Object option : valueType.getEnumConstants()) {
                    final String optionName = option.toString();
                    choices.add(factory.createChoice(optionName, optionName));
                }
                property.setIsOpenChoice(false);
                property.setChoices(choices);
            }
            return property;
        }
    }
    return null;
}
Also used : Choice(org.apache.chemistry.opencmis.commons.definitions.Choice) Cardinality(org.apache.chemistry.opencmis.commons.enums.Cardinality) MutablePropertyDefinition(org.apache.chemistry.opencmis.commons.definitions.MutablePropertyDefinition) GraphObject(org.structr.core.GraphObject) PropertyType(org.apache.chemistry.opencmis.commons.enums.PropertyType) Updatability(org.apache.chemistry.opencmis.commons.enums.Updatability) LinkedList(java.util.LinkedList) TypeDefinitionFactory(org.apache.chemistry.opencmis.server.support.TypeDefinitionFactory)

Aggregations

LinkedList (java.util.LinkedList)1 Choice (org.apache.chemistry.opencmis.commons.definitions.Choice)1 MutablePropertyDefinition (org.apache.chemistry.opencmis.commons.definitions.MutablePropertyDefinition)1 Cardinality (org.apache.chemistry.opencmis.commons.enums.Cardinality)1 PropertyType (org.apache.chemistry.opencmis.commons.enums.PropertyType)1 Updatability (org.apache.chemistry.opencmis.commons.enums.Updatability)1 TypeDefinitionFactory (org.apache.chemistry.opencmis.server.support.TypeDefinitionFactory)1 GraphObject (org.structr.core.GraphObject)1