Package org.martinlaw.bo

Examples of org.martinlaw.bo.MartinlawPerson


   * @param principalName - the principal name e.g. enjogu
   * @param newBo - the new business object
   */
  protected <T extends BusinessObject> void testMartinlawPersonCRUD(
      Class<T> t, String principalName, MartinlawPerson newBo) {
    MartinlawPerson personRetrieve = (MartinlawPerson) getBoSvc().findBySinglePrimaryKey(t, new Long(1001));
    assertNotNull(personRetrieve);
    assertEquals(principalName, personRetrieve.getPrincipalName());
    // C
   
    newBo.setPrincipalName("mkoobs");
    getBoSvc().save(newBo);
    // R
View Full Code Here

TOP

Related Classes of org.martinlaw.bo.MartinlawPerson

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.