Package org.oasis.ubl.commonaggregatecomponents

Examples of org.oasis.ubl.commonaggregatecomponents.BuyerPartyType


     *
     * @return a <code>String</code> value representing the name of a person
     * familiar with <code>OrderType</code>
     */
    public String getBuyerContact() {
        BuyerPartyType party = order.getBuyerParty();
        return ((NameType) party.getParty().getPartyName().getName().get(0)).getValue();
    }
View Full Code Here


     *
     * @return a <code>String</code> value representing the name of the entity
     * placing this order
     */
    public String getBuyerName() {
        BuyerPartyType party = order.getBuyerParty();
        return ((NameType) party.getParty().getPartyName().getName().get(0)).getValue();
     }
View Full Code Here

TOP

Related Classes of org.oasis.ubl.commonaggregatecomponents.BuyerPartyType

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.