Thanks Pete. Any help is very much appreciated on this. Here is the PersonHome. 
It is unchanged from what was created by Seam Gen:

  | package com.locuslive.odyssey.entity;
  | 
  | import org.jboss.seam.annotations.Name;
  | import org.jboss.seam.framework.EntityHome;
  | 
  | @Name("personHome")
  | public class PersonHome extends EntityHome<Person> {
  | 
  |     public void setPersonPersonid(Byte id) {
  |             setId(id);
  |     }
  | 
  |     public Byte getPersonPersonid() {
  |             return (Byte) getId();
  |     }
  | 
  |     @Override
  |     protected Person createInstance() {
  |             Person person = new Person();
  |             return person;
  |     }
  | 
  |     public void wire() {
  |     }
  | 
  |     public boolean isWired() {
  |             return true;
  |     }
  | 
  |     public Person getDefinedInstance() {
  |             return isIdDefined() ? getInstance() : null;
  |     }
  | 
  | }
  | 

Thanks,

Damian.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4070489#4070489

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4070489
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to