Hi,

I am using JDK1.4 and need to pass a java bean as the
call parameter to the service. The bean has an
attribute as a list of some other java bean.
e.g.

public class User implements Serializable {
        
        private String id = "";
        
        private List customers;

        /**
         * @return the id
         */
        public String getId() {
                return id;
        }

        /**
         * @param id the id to set
         */
        public void setId(String id) {
                this.id = id;
        }


        /**
         * @return the customers
         */
        public List getCustomers() {
                return customers;
        }

        /**
         * @param customers the customers to set
         */
        public void setCustomers(List customers) {
                this.customers = customers;
        }
}

In the XFire documentation for mapping and collections
link, it is mentioned only about the mappings for
passing direct Collections of java objects as
parameters, but I am not able to find the way when the
collection is an attribute of a Java Object itself.

Can someone please guide me with this? It is quite
urgent.

Thanks in advance!

Regards,
Anshumn


       
____________________________________________________________________________________Ready
 for the edge of your seat? 
Check out tonight's top picks on Yahoo! TV. 
http://tv.yahoo.com/

---------------------------------------------------------------------
To unsubscribe from this list please visit:

    http://xircles.codehaus.org/manage_email

Reply via email to