Package org.wicketstuff.rest

Examples of org.wicketstuff.rest.Person


  }

  @MethodMapping(value = "/", httpMethod = HttpMethod.POST)
  public Person testMethodPost()
  {
    Person person = createTestPerson();
    return person;
  }
View Full Code Here


    return "testRequiredDefault";
  }

  public static Person createTestPerson()
  {
    return new Person("Mary", "Smith", "m.smith@gmail.com");
  }
View Full Code Here

TOP

Related Classes of org.wicketstuff.rest.Person

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.