Package org.pentaho.commons.util.repository.type

Examples of org.pentaho.commons.util.repository.type.PropertyDateTime


    String localizedName = getLocalizedName( element );
    String extension = getExtension( element );
    boolean visible = getVisible( element );

    propList.add( new PropertyId( PropertiesBase.OBJECTID, objectId ) );
    propList.add( new PropertyDateTime( PropertiesBase.LASTMODIFICATIONDATE, lastModifiedDate ) );

    if ( isDirectory ) {
      propList.add( new PropertyString( PropertiesBase.OBJECTTYPEID, CmisObject.OBJECT_TYPE_FOLDER ) );
    } else {
      propList.add( new PropertyString( PropertiesBase.OBJECTTYPEID, extension ) );
View Full Code Here

TOP

Related Classes of org.pentaho.commons.util.repository.type.PropertyDateTime

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.