You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GANTRY_PASS_ALL/.svn/pristine/ff/fff976079242c9761131865d215...

108 lines
3.6 KiB
Plaintext

package com.trkf.feemoduleservice;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName;
/**
* This object contains factory methods for each
* Java content interface and Java element interface
* generated in the com.trkf.feemoduleservice package.
* <p>An ObjectFactory allows you to programatically
* construct new instances of the Java representation
* for XML content. The Java representation of XML
* content can consist of schema derived interfaces
* and classes representing the binding of schema
* type definitions, element declarations and model
* groups. Factory methods for each of these are
* provided in this class.
*
*/
@XmlRegistry
public class ObjectFactory {
private final static QName _GetFeeResponse_QNAME = new QName("http://FeeModuleService.trkf.com/", "getFeeResponse");
private final static QName _GetStaFeeResponse_QNAME = new QName("http://FeeModuleService.trkf.com/", "GetStaFeeResponse");
private final static QName _GetFee_QNAME = new QName("http://FeeModuleService.trkf.com/", "getFee");
private final static QName _GetStaFee_QNAME = new QName("http://FeeModuleService.trkf.com/", "GetStaFee");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.trkf.feemoduleservice
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link GetFeeResponse }
*
*/
public GetFeeResponse createGetFeeResponse() {
return new GetFeeResponse();
}
/**
* Create an instance of {@link GetFee }
*
*/
public GetFee createGetFee() {
return new GetFee();
}
/**
* Create an instance of {@link GetStaFee }
*
*/
public GetStaFee createGetStaFee() {
return new GetStaFee();
}
/**
* Create an instance of {@link GetStaFeeResponse }
*
*/
public GetStaFeeResponse createGetStaFeeResponse() {
return new GetStaFeeResponse();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link GetFeeResponse }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://FeeModuleService.trkf.com/", name = "getFeeResponse")
public JAXBElement<GetFeeResponse> createGetFeeResponse(GetFeeResponse value) {
return new JAXBElement<GetFeeResponse>(_GetFeeResponse_QNAME, GetFeeResponse.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link GetStaFeeResponse }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://FeeModuleService.trkf.com/", name = "GetStaFeeResponse")
public JAXBElement<GetStaFeeResponse> createGetStaFeeResponse(GetStaFeeResponse value) {
return new JAXBElement<GetStaFeeResponse>(_GetStaFeeResponse_QNAME, GetStaFeeResponse.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link GetFee }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://FeeModuleService.trkf.com/", name = "getFee")
public JAXBElement<GetFee> createGetFee(GetFee value) {
return new JAXBElement<GetFee>(_GetFee_QNAME, GetFee.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link GetStaFee }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://FeeModuleService.trkf.com/", name = "GetStaFee")
public JAXBElement<GetStaFee> createGetStaFee(GetStaFee value) {
return new JAXBElement<GetStaFee>(_GetStaFee_QNAME, GetStaFee.class, null, value);
}
}