Uses of Class
javax.ws.rs.Produces

Packages that use Produces
org.jboss.example.jaxrs2.async   
org.jboss.resteasy.example.oauth   
org.jboss.resteasy.examples   
org.jboss.resteasy.keystone.client   
org.jboss.resteasy.keystone.server   
org.jboss.resteasy.plugins.providers   
org.jboss.resteasy.plugins.providers.atom   
org.jboss.resteasy.plugins.providers.html   
org.jboss.resteasy.plugins.providers.jackson   
org.jboss.resteasy.plugins.providers.jaxb   
org.jboss.resteasy.plugins.providers.jaxb.fastinfoset   
org.jboss.resteasy.plugins.providers.jaxb.json   
org.jboss.resteasy.plugins.providers.multipart   
org.jboss.resteasy.plugins.stats   
org.jboss.resteasy.security.smime   
org.jboss.resteasy.skeleton.key.idm.service   
org.jboss.resteasy.test.application   
org.jboss.resteasy.test.async   
 

Uses of Produces in org.jboss.example.jaxrs2.async
 

Methods in org.jboss.example.jaxrs2.async with annotations of type Produces
 Customer CustomerResource.getById(String id)
           
 Customer CustomerResource.getByName(String name)
           
 String ChatListener.ping()
           
 

Uses of Produces in org.jboss.resteasy.example.oauth
 

Methods in org.jboss.resteasy.example.oauth with annotations of type Produces
 List<String> CustomerService.getCustomers()
           
 List<String> ProductService.getProducts()
           
 

Uses of Produces in org.jboss.resteasy.examples
 

Methods in org.jboss.resteasy.examples with annotations of type Produces
 String Orders.getOrder(String id)
           
 

Uses of Produces in org.jboss.resteasy.keystone.client
 

Methods in org.jboss.resteasy.keystone.client with annotations of type Produces
 Access TokenFactory.create(Authentication auth)
           
 Response ProjectsResource.create(Project project)
           
 Response RolesResource.create(Role role)
           
 Response UsersResource.create(StoredUser user)
           
 Response RolesResource.create(String roleName)
           
 String TokenFactory.createSigned(Authentication auth)
           
 User UsersResource.get(String id)
           
 Access TokenVerifier.get(String tokenId)
           
 Role RolesResource.get(String id)
           
 Project ProjectsResource.get(String id)
           
 Projects ProjectsResource.query(String name)
           
 void ProjectsResource.update(String id, Project project)
           
 void RolesResource.update(String id, Role role)
           
 void UsersResource.update(String id, StoredUser user)
           
 

Uses of Produces in org.jboss.resteasy.keystone.server
 

Methods in org.jboss.resteasy.keystone.server with annotations of type Produces
 Access TokenService.create(Authentication auth)
           
 Response ProjectsService.create(Project project)
           
 Response RolesService.create(UriInfo uriInfo, Role role)
           
 Response UsersService.create(UriInfo uriInfo, StoredUser user)
           
 Response RolesService.create(UriInfo uriInfo, String roleName)
           
 SignedOutput TokenService.createSigned(Authentication auth)
           
 UrlToken TokenService.createTiny(Authentication auth)
           
 User UsersService.get(String id)
           
 Access TokenService.get(String tokenId)
           
 Role RolesService.get(String id)
           
 Project ProjectsService.getProject(String id)
           
 Projects ProjectsService.getProjects(String name)
           
 void ProjectsService.update(String id, Project project)
           
 void RolesService.update(String id, Role role)
           
 void UsersService.update(String id, StoredUser user)
           
 

Uses of Produces in org.jboss.resteasy.plugins.providers
 

Classes in org.jboss.resteasy.plugins.providers with annotations of type Produces
 class ByteArrayProvider
           
 class DataSourceProvider
           
 class DefaultTextPlain
           
 class DocumentProvider
          Provider that reads and writes org.w3c.dom.Document
 class FileProvider
           
 class FormUrlEncodedProvider
           
 class IIOImageProvider
           
 class InputStreamProvider
           
 class JaxrsFormProvider
           
 class SerializableProvider
           
 class StreamingOutputProvider
           
 class StringTextStar
           
 class YamlProvider
          Provider for YAML <-> Object marshalling.
 

Uses of Produces in org.jboss.resteasy.plugins.providers.atom
 

Classes in org.jboss.resteasy.plugins.providers.atom with annotations of type Produces
 class AtomEntryProvider
           
 class AtomFeedProvider
           
 

Uses of Produces in org.jboss.resteasy.plugins.providers.html
 

Classes in org.jboss.resteasy.plugins.providers.html with annotations of type Produces
 class HtmlRenderableWriter
           
 

Methods in org.jboss.resteasy.plugins.providers.html with annotations of type Produces
 View TestHtmlResource.testHtml(String value)
           
 Redirect TestHtmlResource.testParam(String value)
           
 

Uses of Produces in org.jboss.resteasy.plugins.providers.jackson
 

Classes in org.jboss.resteasy.plugins.providers.jackson with annotations of type Produces
 class ResteasyJacksonProvider
          Only different from Jackson one is *+json in @Produces/@Consumes
 

Uses of Produces in org.jboss.resteasy.plugins.providers.jaxb
 

Classes in org.jboss.resteasy.plugins.providers.jaxb with annotations of type Produces
 class CollectionProvider
           
 class JAXBElementProvider
           A JAXB Provider which handles parameter and return types of JAXBElement.
 class JAXBXmlRootElementProvider
          A JAXBXmlRootElementProvider.
 class JAXBXmlSeeAlsoProvider
          A JAXBXmlRootElementProvider.
 class JAXBXmlTypeProvider
           A JAXB entity provider that handles classes without XmlRootElement annotation.
 class MapProvider
           
 class XmlJAXBContextFinder
           
 

Uses of Produces in org.jboss.resteasy.plugins.providers.jaxb.fastinfoset
 

Classes in org.jboss.resteasy.plugins.providers.jaxb.fastinfoset with annotations of type Produces
 class FastinfoSetElementProvider
           
 class FastinfoSetJAXBContextFinder
           
 class FastinfoSetXmlRootElementProvider
           
 class FastinfoSetXmlSeeAlsoProvider
           
 class FastinfoSetXmlTypeProvider
           
 

Uses of Produces in org.jboss.resteasy.plugins.providers.jaxb.json
 

Classes in org.jboss.resteasy.plugins.providers.jaxb.json with annotations of type Produces
 class JettisonElementProvider
           
 class JettisonXmlRootElementProvider
           
 class JettisonXmlSeeAlsoProvider
           
 class JettisonXmlTypeProvider
           
 class JsonCollectionProvider
           
 class JsonJAXBContextFinder
           
 class JsonMapProvider
           
 

Uses of Produces in org.jboss.resteasy.plugins.providers.multipart
 

Classes in org.jboss.resteasy.plugins.providers.multipart with annotations of type Produces
 class ListMultipartWriter
           
 class MapMultipartFormDataWriter
           
 class MimeMultipartProvider
          A provider to handle multipart representations.
 class MultipartFormAnnotationWriter
           
 class MultipartFormDataWriter
           
 class MultipartRelatedWriter
          The MessageBodyWriter implementation to serialize MultipartRelatedOutput objects.
 class MultipartWriter
           
 class XopWithMultipartRelatedWriter
          This provider is for writing xop packages packed as multipart/related.
 

Uses of Produces in org.jboss.resteasy.plugins.stats
 

Methods in org.jboss.resteasy.plugins.stats with annotations of type Produces
 RegistryData RegistryStatsResource.get()
           
 

Uses of Produces in org.jboss.resteasy.security.smime
 

Classes in org.jboss.resteasy.security.smime with annotations of type Produces
 class EnvelopedWriter
           
 class MultipartSignedWriter
           
 class PKCS7SignatureTextWriter
           
 class PKCS7SignatureWriter
           
 

Uses of Produces in org.jboss.resteasy.skeleton.key.idm.service
 

Methods in org.jboss.resteasy.skeleton.key.idm.service with annotations of type Produces
 Response TokenManagement.accessRequest(String realmId, MultivaluedMap<String,String> formData)
           
 Response TokenManagement.accessTokenGrant(String realmId, MultivaluedMap<String,String> formParams)
          OAuth Section 4.4 Client Credentials Grant
 PublishedRealmRepresentation RealmResource.getRealm(String id)
           
 String RealmResource.getRealmHtml(String id)
           
 Response RealmResource.getRealmsByName(String name)
           
 String RealmResource.getRealmsByNameHtml(String name)
           
 

Uses of Produces in org.jboss.resteasy.test.application
 

Methods in org.jboss.resteasy.test.application with annotations of type Produces
 String MyResource.getApplicationCount()
           
 String MyResource.getCount()
           
 String MyResource.getException()
           
 

Uses of Produces in org.jboss.resteasy.test.async
 

Methods in org.jboss.resteasy.test.async with annotations of type Produces
 void JaxrsResource.cancel(AsyncResponse response)
           
 void MyResource.get(AsynchronousResponse response)
           
 void JaxrsResource.get(AsyncResponse response)
           
 void MyResource.timeout(AsynchronousResponse response)
           
 void JaxrsResource.timeout(AsyncResponse response)
           
 



Copyright © 2013. All Rights Reserved.