Class PetStore
- java.lang.Object
- 
- org.apache.cxf.jaxrs.model.wadl.petstore.PetStore
 
- 
 @Path("/") public class PetStore extends java.lang.ObjectThe Pet Store
- 
- 
Field SummaryFields Modifier and Type Field Description static java.lang.StringCLOSED
 - 
Constructor SummaryConstructors Constructor Description PetStore()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.ws.rs.core.ResponsegetBaseStatus()Return Pet Status with no paramsjavax.ws.rs.core.ResponsegetStatus1Param(java.lang.String petId)Return Pet Status With 1 Paramjavax.ws.rs.core.ResponsegetStatus2Params(java.lang.String petId, java.lang.String query)Return Pet Status with 2 paramsjavax.ws.rs.core.ResponsegetStatus3Params(java.lang.String petId, java.lang.String query, java.lang.String query2)Return Pet Status With 3 Params
 
- 
- 
- 
Field Detail- 
CLOSEDpublic static final java.lang.String CLOSED - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
getBaseStatus@GET @Produces("text/plain") public javax.ws.rs.core.Response getBaseStatus() throws java.lang.ExceptionReturn Pet Status with no params- Returns:
- status
- Throws:
- java.lang.Exception
 
 - 
getStatus2Params@GET @Path("/petstore/pets/{petId}/") @Produces("text/xml") public javax.ws.rs.core.Response getStatus2Params(@PathParam("petId") java.lang.String petId, @QueryParam("query") java.lang.String query) throws java.lang.ExceptionReturn Pet Status with 2 params- Parameters:
- petId- the pet id
- query- the query
- Returns:
- status
- Throws:
- java.lang.Exception
 
 - 
getStatus1Param@GET @Path("/petstore/pets/id/{petId}/") @Produces("text/xml") public javax.ws.rs.core.Response getStatus1Param(@PathParam("petId") java.lang.String petId) throws java.lang.ExceptionReturn Pet Status With 1 Param- Parameters:
- petId- the pet id
- Returns:
- status
- Throws:
- java.lang.Exception
 
 - 
getStatus3Params@GET @Path("/petstore/pets/{petId}/") @Produces("text/xml") public javax.ws.rs.core.Response getStatus3Params(@PathParam("petId") java.lang.String petId, @QueryParam("query") java.lang.String query, @QueryParam("query2") java.lang.String query2) throws java.lang.ExceptionReturn Pet Status With 3 Params- Parameters:
- petId- the pet id
- query- the query
- query2- the query2
- Returns:
- status
- Throws:
- java.lang.Exception
 
 
- 
 
-