Package com.sun.xml.registry.uddi.infomodel

Examples of com.sun.xml.registry.uddi.infomodel.PersonNameImpl


        Contact contact = null;
        if (user != null) {
            //lets get the user info first
            Collection telephoneNumbers = user.getTelephoneNumbers(null);
            //change this latter
            PersonNameImpl personName = (PersonNameImpl)user.getPersonName();
            //tbd Collection
            Collection postalAddresses =
                    user.getPostalAddresses();
            Collection emailAddresses = user.getEmailAddresses();
           
            Collection descriptions = getDescriptions(user, publish);
            String useType = user.getType();
           
            contact = null;
            contact = objFactory.createContact();
           
            if (personName != null) {
                String contactName = personName.getFullName();
                if (contactName != null)
                    contact.setPersonName(contactName);
            } else {
                return null;
            }
View Full Code Here


            Collection email = user.getEmail();
            Collection address = user.getAddress();
           
            UserImpl theUser = new UserImpl();
            if (name != null)
                theUser.setPersonName(new PersonNameImpl(name));
           
            if (useType != null)
                theUser.setType(useType);
           
            if (descriptions != null) {
View Full Code Here

TOP

Related Classes of com.sun.xml.registry.uddi.infomodel.PersonNameImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.