Package com.ifyouwannabecool.domain.persona

Examples of com.ifyouwannabecool.domain.persona.Persona


*/
@Path ( "/persona" )
public class PersonaServiceImpl implements PersonaService {

  public Persona readPersona(String personaId) {
    Persona persona = new Persona();
    //...load the persona from the db, etc...
    return persona;
  }
View Full Code Here


@Path ( "/persona" )
public class PersonaServiceImpl implements PersonaService {


  public Persona readPersona(String personaId) {
    Persona persona = new Persona();
    //...load the persona from the db, etc...
    return persona;
  }
View Full Code Here

TOP

Related Classes of com.ifyouwannabecool.domain.persona.Persona

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.