/******************************************************************************* * Copyright (c) 2006-2010 eBay Inc. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 *******************************************************************************/ package org.ebayopensource.turmeric.runtime.tests.service1.sample.handlers; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for RequestHeader complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="RequestHeader"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="PartnerID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Password" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="PartnerTransactionID" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="WSVersionNumber" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="PartnerTransactionDate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RequestHeader", propOrder = { "partnerID", "password", "partnerTransactionID", "wsVersionNumber", "partnerTransactionDate" }) public class RequestHeader { @XmlElement(name = "PartnerID") protected String partnerID; @XmlElement(name = "Password") protected String password; @XmlElement(name = "PartnerTransactionID") protected String partnerTransactionID; @XmlElement(name = "WSVersionNumber") protected String wsVersionNumber; @XmlElement(name = "PartnerTransactionDate") protected String partnerTransactionDate; /** * Gets the value of the partnerID property. * * @return * possible object is * {@link String } * */ public String getPartnerID() { return partnerID; } /** * Sets the value of the partnerID property. * * @param value * allowed object is * {@link String } * */ public void setPartnerID(String value) { this.partnerID = value; } /** * Gets the value of the password property. * * @return * possible object is * {@link String } * */ public String getPassword() { return password; } /** * Sets the value of the password property. * * @param value * allowed object is * {@link String } * */ public void setPassword(String value) { this.password = value; } /** * Gets the value of the partnerTransactionID property. * * @return * possible object is * {@link String } * */ public String getPartnerTransactionID() { return partnerTransactionID; } /** * Sets the value of the partnerTransactionID property. * * @param value * allowed object is * {@link String } * */ public void setPartnerTransactionID(String value) { this.partnerTransactionID = value; } /** * Gets the value of the wsVersionNumber property. * * @return * possible object is * {@link String } * */ public String getWSVersionNumber() { return wsVersionNumber; } /** * Sets the value of the wsVersionNumber property. * * @param value * allowed object is * {@link String } * */ public void setWSVersionNumber(String value) { this.wsVersionNumber = value; } /** * Gets the value of the partnerTransactionDate property. * * @return * possible object is * {@link String } * */ public String getPartnerTransactionDate() { return partnerTransactionDate; } /** * Sets the value of the partnerTransactionDate property. * * @param value * allowed object is * {@link String } * */ public void setPartnerTransactionDate(String value) { this.partnerTransactionDate = value; } }