Hi,

I have an Entity-Bean like

class employee {

  @Id
  private int id;

  @ManyToOne
  @JoinColumn(name="dept_id")
  private Department dep;
  
  // ....
}

and a Webservice (JSR-181) returning an employee. Now I don't want the 
attribute "dep" to show up in the generated WSDL nor to be returned. Is there a 
way to accomplish this?

Thanks for any help,
Peter

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

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

Reply via email to