Package org.apache.stanbol.commons.viewable

Examples of org.apache.stanbol.commons.viewable.RdfViewable


  }
       
        @GET
        @Path("users")
        public RdfViewable listUsers(){
            return new RdfViewable("listUser.ftl", getUserType(), this.getClass());
        }
View Full Code Here


        }
       
  @GET
  @Path("user/{username}")
  public RdfViewable editUser(@PathParam("username") String userName) {
            return new RdfViewable("editUser.ftl", getUser(userName), this.getClass());
  }
View Full Code Here

  }
 
  @GET
  @Path("view-user")
  public RdfViewable viewUser(@QueryParam("userName") String userName) {
    return new RdfViewable("edit.ftl", getUser(userName), this.getClass());
  }
View Full Code Here

TOP

Related Classes of org.apache.stanbol.commons.viewable.RdfViewable

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.