本文整理汇总了Java中org.apache.chemistry.opencmis.commons.impl.server.ObjectInfoImpl.setTypeId方法的典型用法代码示例。如果您正苦于以下问题:Java ObjectInfoImpl.setTypeId方法的具体用法?Java ObjectInfoImpl.setTypeId怎么用?Java ObjectInfoImpl.setTypeId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.chemistry.opencmis.commons.impl.server.ObjectInfoImpl
的用法示例。
在下文中一共展示了ObjectInfoImpl.setTypeId方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: readCustomProperties
import org.apache.chemistry.opencmis.commons.impl.server.ObjectInfoImpl; //导入方法依赖的package包/类
/**
* Reads and adds properties.
*/
private void readCustomProperties(Node node, PropertiesImpl properties, Set<String> filter, ObjectInfoImpl objectInfo) {
ObjectData obj = new ObjectDataImpl();
if (obj.getProperties() != null) {
// add it to properties
for (PropertyData<?> prop : obj.getProperties().getPropertyList()) {
// overwrite object info
if (prop instanceof PropertyString) {
String firstValueStr = ((PropertyString) prop).getFirstValue();
if (PropertyIds.NAME.equals(prop.getId())) {
objectInfo.setName(firstValueStr);
} else if (PropertyIds.OBJECT_TYPE_ID.equals(prop.getId())) {
objectInfo.setTypeId(firstValueStr);
} else if (PropertyIds.CREATED_BY.equals(prop.getId())) {
objectInfo.setCreatedBy(firstValueStr);
} else if (PropertyIds.CONTENT_STREAM_MIME_TYPE.equals(prop.getId())) {
objectInfo.setContentType(firstValueStr);
} else if (PropertyIds.CONTENT_STREAM_FILE_NAME.equals(prop.getId())) {
objectInfo.setFileName(firstValueStr);
}
}
if (prop instanceof PropertyDateTime) {
GregorianCalendar firstValueCal = ((PropertyDateTime) prop).getFirstValue();
if (PropertyIds.CREATION_DATE.equals(prop.getId())) {
objectInfo.setCreationDate(firstValueCal);
} else if (PropertyIds.LAST_MODIFICATION_DATE.equals(prop.getId())) {
objectInfo.setLastModificationDate(firstValueCal);
}
}
// check filter
if (filter != null) {
if (!filter.contains(prop.getId())) {
continue;
} else {
filter.remove(prop.getId());
}
}
// don't overwrite id
if (PropertyIds.OBJECT_ID.equals(prop.getId())) {
continue;
}
// don't overwrite base type
if (PropertyIds.BASE_TYPE_ID.equals(prop.getId())) {
continue;
}
// add it
properties.replaceProperty(prop);
}
}
}
示例2: compileProperties
import org.apache.chemistry.opencmis.commons.impl.server.ObjectInfoImpl; //导入方法依赖的package包/类
protected void compileProperties(PropertiesImpl properties, Set<String> filter, ObjectInfoImpl objectInfo)
throws RegistryException {
String typeId = getTypeIdInternal();
BaseTypeId baseTypeId = getBaseTypeId();
objectInfo.setBaseType(baseTypeId);
objectInfo.setTypeId(typeId);
objectInfo.setHasAcl(false);
objectInfo.setVersionSeriesId(getVersionSeriesId());
objectInfo.setRelationshipSourceIds(null);
objectInfo.setRelationshipTargetIds(null);
objectInfo.setRenditionInfos(null);
objectInfo.setSupportsPolicies(false);
objectInfo.setSupportsRelationships(false);
// id
String objectId = getObjectId();
addPropertyId(properties, typeId, filter, PropertyIds.OBJECT_ID, objectId);
objectInfo.setId(objectId);
// name
String name = getName();
addPropertyString(properties, typeId, filter, PropertyIds.NAME, name);
objectInfo.setName(name);
// base type and type name
addPropertyId(properties, typeId, filter, PropertyIds.BASE_TYPE_ID, baseTypeId.value());
addPropertyId(properties, typeId, filter, PropertyIds.OBJECT_TYPE_ID, typeId);
// created and modified by
String createdBy = getCreatedBy();
addPropertyString(properties, typeId, filter, PropertyIds.CREATED_BY, createdBy);
objectInfo.setCreatedBy(createdBy);
addPropertyString(properties, typeId, filter, PropertyIds.LAST_MODIFIED_BY, getLastModifiedBy());
// creation and modification date
GregorianCalendar created = getCreated();
addPropertyDateTime(properties, typeId, filter, PropertyIds.CREATION_DATE, created);
objectInfo.setCreationDate(created);
GregorianCalendar lastModified = getLastModified();
addPropertyDateTime(properties, typeId, filter, PropertyIds.LAST_MODIFICATION_DATE, lastModified);
objectInfo.setLastModificationDate(lastModified);
addPropertyString(properties, typeId, filter, PropertyIds.CHANGE_TOKEN, getChangeToken());
}