Package org.goobi.webapi.beans

Examples of org.goobi.webapi.beans.ProjectsRootNode


    List<Projekt> result = new ArrayList<Projekt>();
    for (Projekt project : data.keySet()) {
      project.template = new ArrayList<Prozess>(data.get(project));
      result.add(project);
    }
    return new ProjectsRootNode(result);
  }
View Full Code Here

TOP

Related Classes of org.goobi.webapi.beans.ProjectsRootNode

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.