Examples of ItemBase


Examples of org.platformlayer.core.model.ItemBase

  @GET
  @Produces({ XML, JSON })
  public ItemBase retrieveItem() throws RepositoryException {
    boolean fetchTags = true;
    ItemBase item = getManagedItem(fetchTags);

    return cleanup(item);
  }
View Full Code Here

Examples of org.platformlayer.core.model.ItemBase

  @Produces({ XML, JSON })
  @Path("children")
  public ManagedItemCollection<ItemBase> listChildren(@QueryParam("deleted") boolean includeDeleted)
      throws OpsException, RepositoryException {
    boolean fetchTags = true;
    ItemBase item = getManagedItem(fetchTags);

    Tag parentTag = Tag.buildParentTag(item.getKey());
    Filter filter = TagFilter.byTag(parentTag);

    if (!includeDeleted) {
      filter = StateFilter.excludeDeleted(filter);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.