Package org.jboss.resteasy.examples.contacts.core

Examples of org.jboss.resteasy.examples.contacts.core.Contacts


  @GET
  @Path("/contacts")
  @Produces("application/xml")
  public Contacts getAllContacts() {
    Contacts contacts = new Contacts();
    contacts.setContacts(contactDao.findAllContacts());
    return contacts;
  }
View Full Code Here


  @GET
  @Path("contacts/{id}/contacts")
  @Produces("application/xml")
  public Contacts getContactsOfContact(@PathParam("id") Long id) {
    Contacts contacts = new Contacts();
    contacts.setContacts(contactDao.findContactsOfContact(id));
    return contacts;
  }
View Full Code Here

  @GET
  @Path("/contacts")
  @Produces("application/xml")
  public Contacts getAllContacts() {
    Contacts contacts = new Contacts();
    contacts.setContacts(contactDao.findAllContacts());
    return contacts;
  }
View Full Code Here

  @GET
  @Path("contacts/{id}/contacts")
  @Produces("application/xml")
  public Contacts getContactsOfContact(@PathParam("id") Long id) {
    Contacts contacts = new Contacts();
    contacts.setContacts(contactDao.findContactsOfContact(id));
    return contacts;
  }
View Full Code Here

TOP

Related Classes of org.jboss.resteasy.examples.contacts.core.Contacts

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.