package com.amalto.workbench.webservices; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for WSExecuteRoutingOrderV2Synchronously complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="WSExecuteRoutingOrderV2Synchronously"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="routingOrderV2PK" type="{http://www.talend.com/mdm}WSRoutingOrderV2PK" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WSExecuteRoutingOrderV2Synchronously", propOrder = { "routingOrderV2PK" }) public class WSExecuteRoutingOrderV2Synchronously { protected WSRoutingOrderV2PK routingOrderV2PK; /** * Default no-arg constructor * */ public WSExecuteRoutingOrderV2Synchronously() { super(); } /** * Fully-initialising value constructor * */ public WSExecuteRoutingOrderV2Synchronously(final WSRoutingOrderV2PK routingOrderV2PK) { this.routingOrderV2PK = routingOrderV2PK; } /** * Gets the value of the routingOrderV2PK property. * * @return * possible object is * {@link WSRoutingOrderV2PK } * */ public WSRoutingOrderV2PK getRoutingOrderV2PK() { return routingOrderV2PK; } /** * Sets the value of the routingOrderV2PK property. * * @param value * allowed object is * {@link WSRoutingOrderV2PK } * */ public void setRoutingOrderV2PK(WSRoutingOrderV2PK value) { this.routingOrderV2PK = value; } }