Package com.filenet.api.admin

Examples of com.filenet.api.admin.DocumentClassDefinition


  @SuppressWarnings("unchecked")
  @Override
  public Iterator<PropertyDefinition> getPropertyDefinitions(Id objectId,
      PropertyFilter filter) throws RepositoryException {
    try {
      DocumentClassDefinition documentClassDefinition =
          Factory.DocumentClassDefinition.fetchInstance(objectStore, objectId,
              filter);
      PropertyDefinitionList propertyDefinitionList =
          documentClassDefinition.get_PropertyDefinitions();
      return propertyDefinitionList.iterator();
    } catch (Exception e) {
      throw new RepositoryException("Unable to fetch property definition for "
          + objectId.toString(), e);
    }
View Full Code Here

TOP

Related Classes of com.filenet.api.admin.DocumentClassDefinition

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.