A C D G O P S U 

A

addCustomer(Customer) - Method in class org.jboss.quickstarts.fuse.rest.CustomerService
Using HTTP POST, we can add a new customer to the system by uploading the XML representation for the customer.

C

Customer - Class in org.jboss.quickstarts.fuse.rest
The Customer class is just a plain old java object, with a few properties and getters and setters.
Customer() - Constructor for class org.jboss.quickstarts.fuse.rest.Customer
 
CustomerService - Class in org.jboss.quickstarts.fuse.rest
This Java class with be hosted in the URI path defined by the @Path annotation.
CustomerService() - Constructor for class org.jboss.quickstarts.fuse.rest.CustomerService
 

D

deleteCustomer(String) - Method in class org.jboss.quickstarts.fuse.rest.CustomerService
This method is mapped to an HTTP DELETE of 'http://localhost:8181/cxf/crm/customerservice/customers/{id}'.

G

getCustomer(String) - Method in class org.jboss.quickstarts.fuse.rest.CustomerService
This method is mapped to an HTTP GET of 'http://localhost:8181/cxf/crm/customerservice/customers/{id}'.
getDescription() - Method in class org.jboss.quickstarts.fuse.rest.Order
 
getDescription() - Method in class org.jboss.quickstarts.fuse.rest.Product
 
getId() - Method in class org.jboss.quickstarts.fuse.rest.Customer
 
getId() - Method in class org.jboss.quickstarts.fuse.rest.Order
 
getId() - Method in class org.jboss.quickstarts.fuse.rest.Product
 
getName() - Method in class org.jboss.quickstarts.fuse.rest.Customer
 
getOrder(String) - Method in class org.jboss.quickstarts.fuse.rest.CustomerService
This method is mapped to an HTTP GET of 'http://localhost:8181/cxf/crm/customerservice/orders/{id}'.
getProduct(int) - Method in class org.jboss.quickstarts.fuse.rest.Order
This method is mapped to an HTTP GET of 'products/{productId}', relative to the URL that point to this Order resource itself.
getThisOrder() - Method in class org.jboss.quickstarts.fuse.rest.Order
This method is mapped to an HTTP GET of '/', relative to the URL that point to this Order resource itself.

O

Order - Class in org.jboss.quickstarts.fuse.rest
The Order class is not only a plain old java object, with a few properties and getters and setters, but it also defines a sub-resource for the Order returned by CustomerService.
Order() - Constructor for class org.jboss.quickstarts.fuse.rest.Order
 
org.jboss.quickstarts.fuse.rest - package org.jboss.quickstarts.fuse.rest
 

P

Product - Class in org.jboss.quickstarts.fuse.rest
The Product class is just a plain old java object, with a few properties and getters and setters.
Product() - Constructor for class org.jboss.quickstarts.fuse.rest.Product
 

S

setDescription(String) - Method in class org.jboss.quickstarts.fuse.rest.Order
 
setDescription(String) - Method in class org.jboss.quickstarts.fuse.rest.Product
 
setId(long) - Method in class org.jboss.quickstarts.fuse.rest.Customer
 
setId(long) - Method in class org.jboss.quickstarts.fuse.rest.Order
 
setId(long) - Method in class org.jboss.quickstarts.fuse.rest.Product
 
setName(String) - Method in class org.jboss.quickstarts.fuse.rest.Customer
 

U

updateCustomer(Customer) - Method in class org.jboss.quickstarts.fuse.rest.CustomerService
Using HTTP PUT, we can can upload the XML representation of a customer object.
A C D G O P S U 

Copyright © 2014 Red Hat. All Rights Reserved.