*
* @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();
}