Package eu.planets_project.tb.api.data

Examples of eu.planets_project.tb.api.data.DigitalObjectReference


   
    /**
     * @return
     */
    public DigitalObjectReference getRootDigitalObject() {
        return new DigitalObjectReference( null );
    }
View Full Code Here


       
        // Create a DigitalObject for each URI.
        DigitalObjectReference[] dobs = new DigitalObjectReference[childs.size()];
        for( int i = 0; i < childs.size(); i ++ ) {
            // Create a DOB from the URI:
            dobs[i] = new DigitalObjectReference( childs.get(i) );
           
            // Mark that DigitalObject as a Directory if listing it returns NULL:
          log.info("Calling Data Registry List for " + childs.get(i));
            List<URI> grandchilds = this.dataReg.list(childs.get(i));
            if( grandchilds == null ) {
View Full Code Here

TOP

Related Classes of eu.planets_project.tb.api.data.DigitalObjectReference

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.