Examples of BuyerPartyType


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

Examples of org.oasis.ubl.commonaggregatecomponents.BuyerPartyType

     *
     * @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
Copyright © 2018 www.massapi.com. 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.