// This class was generated by the JAXRPC SI, do not edit. // Contents subject to change without notice. // JAX-RPC Standard Implementation (1.1.3, build R1) // Generated source version: 1.1.3 package org.jboss.test.bpel.ws.consumption.partner.types; public class TTranslationRequest { protected java.lang.String targetLanguage; protected org.jboss.test.bpel.ws.consumption.partner.types.TDocument document; public TTranslationRequest() { } public TTranslationRequest(java.lang.String targetLanguage, org.jboss.test.bpel.ws.consumption.partner.types.TDocument document) { this.targetLanguage = targetLanguage; this.document = document; } public java.lang.String getTargetLanguage() { return targetLanguage; } public void setTargetLanguage(java.lang.String targetLanguage) { this.targetLanguage = targetLanguage; } public org.jboss.test.bpel.ws.consumption.partner.types.TDocument getDocument() { return document; } public void setDocument(org.jboss.test.bpel.ws.consumption.partner.types.TDocument document) { this.document = document; } }