EddiesiMed
01-22-2006, 06:22 PM
sorry in my English
I use javarpc to call java method
it return object but i can't use that
object attribute cause it private attribute
can someone tell me how to use that object attribute
Example object :
public class ContactVO
{
private String contactId;
private String contactName;
private String contactSurname;
private String phoneNumber;
public ContactVO(String contactid ,String name, String surname, String phoneNumber)
{
this.contactName = name;
this.contactId = contactid;
this.contactSurname = surname;
this.phoneNumber = phoneNumber;
}
}
I use javarpc to call java method
it return object but i can't use that
object attribute cause it private attribute
can someone tell me how to use that object attribute
Example object :
public class ContactVO
{
private String contactId;
private String contactName;
private String contactSurname;
private String phoneNumber;
public ContactVO(String contactid ,String name, String surname, String phoneNumber)
{
this.contactName = name;
this.contactId = contactid;
this.contactSurname = surname;
this.phoneNumber = phoneNumber;
}
}