Package org.gatein.management.rest.content

Examples of org.gatein.management.rest.content.Resource


      MediaType mediaType = ContentTypeUtils.getMediaType(contentType);

      Object result = response.getResult();
      if (result instanceof ReadResourceModel)
      {
         result = new Resource(uriInfo, (ReadResourceModel) result);
      }
      else if (result instanceof NoResultModel)
      {
         return Response.ok().type(mediaType).build();
      }
View Full Code Here

TOP

Related Classes of org.gatein.management.rest.content.Resource

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.