Package org.corrib.s3b.sscf.manage

Examples of org.corrib.s3b.sscf.manage.XfoafSscfResource.listContent()


   * @return list of valid resources
   */
  public List<XfoafSscfResource> getValidResourceContent(String uri,
      Person viewer) {
    XfoafSscfResource resource = XfoafSscfResource.getXfoafSscfResource(uri);
    Iterator<XResource> it = resource.listContent();
    List<XfoafSscfResource> ret = new ArrayList<XfoafSscfResource>();

    while (it.hasNext()) {
      XResource br = it.next();
      if(br instanceof XfoafSscfResource)
View Full Code Here


     
      //list content of xfoafsscfresource
      if(resource instanceof XfoafSscfResource)
      {
        XfoafSscfResource xfr = XfoafSscfResource.getXfoafSscfResource(resource.getStringURI());
        Iterator<? extends XResource> it = xfr.listContent();
        this.bookmarksTree(it, buffer, viewer, depth, session, level,parentIsOwner,standalone,false,inOwn,serviceAddr,selectedUri,pathsToUri);
      }
      //list content of siocdataresource
      else if (resource instanceof SiocDataResource) {
        SiocDataResource sdr = (SiocDataResource) resource;
View Full Code Here

    JSONArray ja = new JSONArray();
   
    int i = 0;
   
    if(inbox!=null) {
      Iterator<XResource> it = inbox.listContent();
     
      while(it.hasNext())
      {
        XResource br = it.next();
        JSONObject jo = new JSONObject();
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.