Hi folks, 
I read an example.
 
  | 
  | public interface Organization extends Remote
  | {
  |    Person jobRequest(Person target) throws RemoteException;
  | }
  | 
  | public class Person
  | {
  |    private String name;
  |    private int age;
  | 
  |    public Person()
  |    {
  |    }
  | 
  |    public Person(String name, int age)
  |    {
  |       this.age = age;
  |       this.name = name;
  |    }
  | 
  |    public int getAge()
  |    {
  |       return age;
  |    }
  | 
  |    public void setAge(int age)
  |    {
  |       this.age = age;
  |    }
  | 
  |    public String getName()
  |    {
  |       return name;
  |    }
  | 
  |    public void setName(String name)
  |    {
  |       this.name = name;
  |    }
  |    
  |   }
  | 
  |  

But I want hide age or name element in WSDL file. How to do it?

Thank you!

Chwang 



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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3908561


-------------------------------------------------------
This SF.Net email is sponsored by the JBoss Inc.  Get Certified Today
Register for a JBoss Training Course.  Free Certification Exam
for All Training Attendees Through End of 2005. For more info visit:
http://ads.osdn.com/?ad_id=7628&alloc_id=16845&op=click
_______________________________________________
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to