org.example.wsHT.impl.XMLTTaskInterfaceImpl Maven / Gradle / Ivy
The newest version!
/*
* XML Type: tTaskInterface
* Namespace: http://www.example.org/WS-HT
* Java type: org.example.wsHT.XMLTTaskInterface
*
* Automatically generated - do not modify.
*/
package org.example.wsHT.impl;
/**
* An XML tTaskInterface(@http://www.example.org/WS-HT).
*
* This is a complex type.
*/
public class XMLTTaskInterfaceImpl extends org.example.wsHT.impl.XMLTExtensibleElementsImpl implements org.example.wsHT.XMLTTaskInterface
{
private static final long serialVersionUID = 1L;
public XMLTTaskInterfaceImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName PORTTYPE$0 =
new javax.xml.namespace.QName("", "portType");
private static final javax.xml.namespace.QName OPERATION$2 =
new javax.xml.namespace.QName("", "operation");
private static final javax.xml.namespace.QName RESPONSEPORTTYPE$4 =
new javax.xml.namespace.QName("", "responsePortType");
private static final javax.xml.namespace.QName RESPONSEOPERATION$6 =
new javax.xml.namespace.QName("", "responseOperation");
/**
* Gets the "portType" attribute
*/
public javax.xml.namespace.QName getPortType()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(PORTTYPE$0);
if (target == null)
{
return null;
}
return target.getQNameValue();
}
}
/**
* Gets (as xml) the "portType" attribute
*/
public org.apache.xmlbeans.XmlQName xgetPortType()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlQName target = null;
target = (org.apache.xmlbeans.XmlQName)get_store().find_attribute_user(PORTTYPE$0);
return target;
}
}
/**
* Sets the "portType" attribute
*/
public void setPortType(javax.xml.namespace.QName portType)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(PORTTYPE$0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(PORTTYPE$0);
}
target.setQNameValue(portType);
}
}
/**
* Sets (as xml) the "portType" attribute
*/
public void xsetPortType(org.apache.xmlbeans.XmlQName portType)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlQName target = null;
target = (org.apache.xmlbeans.XmlQName)get_store().find_attribute_user(PORTTYPE$0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlQName)get_store().add_attribute_user(PORTTYPE$0);
}
target.set(portType);
}
}
/**
* Gets the "operation" attribute
*/
public java.lang.String getOperation()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(OPERATION$2);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "operation" attribute
*/
public org.apache.xmlbeans.XmlNCName xgetOperation()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_attribute_user(OPERATION$2);
return target;
}
}
/**
* Sets the "operation" attribute
*/
public void setOperation(java.lang.String operation)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(OPERATION$2);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(OPERATION$2);
}
target.setStringValue(operation);
}
}
/**
* Sets (as xml) the "operation" attribute
*/
public void xsetOperation(org.apache.xmlbeans.XmlNCName operation)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_attribute_user(OPERATION$2);
if (target == null)
{
target = (org.apache.xmlbeans.XmlNCName)get_store().add_attribute_user(OPERATION$2);
}
target.set(operation);
}
}
/**
* Gets the "responsePortType" attribute
*/
public javax.xml.namespace.QName getResponsePortType()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(RESPONSEPORTTYPE$4);
if (target == null)
{
return null;
}
return target.getQNameValue();
}
}
/**
* Gets (as xml) the "responsePortType" attribute
*/
public org.apache.xmlbeans.XmlQName xgetResponsePortType()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlQName target = null;
target = (org.apache.xmlbeans.XmlQName)get_store().find_attribute_user(RESPONSEPORTTYPE$4);
return target;
}
}
/**
* True if has "responsePortType" attribute
*/
public boolean isSetResponsePortType()
{
synchronized (monitor())
{
check_orphaned();
return get_store().find_attribute_user(RESPONSEPORTTYPE$4) != null;
}
}
/**
* Sets the "responsePortType" attribute
*/
public void setResponsePortType(javax.xml.namespace.QName responsePortType)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(RESPONSEPORTTYPE$4);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(RESPONSEPORTTYPE$4);
}
target.setQNameValue(responsePortType);
}
}
/**
* Sets (as xml) the "responsePortType" attribute
*/
public void xsetResponsePortType(org.apache.xmlbeans.XmlQName responsePortType)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlQName target = null;
target = (org.apache.xmlbeans.XmlQName)get_store().find_attribute_user(RESPONSEPORTTYPE$4);
if (target == null)
{
target = (org.apache.xmlbeans.XmlQName)get_store().add_attribute_user(RESPONSEPORTTYPE$4);
}
target.set(responsePortType);
}
}
/**
* Unsets the "responsePortType" attribute
*/
public void unsetResponsePortType()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_attribute(RESPONSEPORTTYPE$4);
}
}
/**
* Gets the "responseOperation" attribute
*/
public java.lang.String getResponseOperation()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(RESPONSEOPERATION$6);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "responseOperation" attribute
*/
public org.apache.xmlbeans.XmlNCName xgetResponseOperation()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_attribute_user(RESPONSEOPERATION$6);
return target;
}
}
/**
* True if has "responseOperation" attribute
*/
public boolean isSetResponseOperation()
{
synchronized (monitor())
{
check_orphaned();
return get_store().find_attribute_user(RESPONSEOPERATION$6) != null;
}
}
/**
* Sets the "responseOperation" attribute
*/
public void setResponseOperation(java.lang.String responseOperation)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(RESPONSEOPERATION$6);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(RESPONSEOPERATION$6);
}
target.setStringValue(responseOperation);
}
}
/**
* Sets (as xml) the "responseOperation" attribute
*/
public void xsetResponseOperation(org.apache.xmlbeans.XmlNCName responseOperation)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlNCName target = null;
target = (org.apache.xmlbeans.XmlNCName)get_store().find_attribute_user(RESPONSEOPERATION$6);
if (target == null)
{
target = (org.apache.xmlbeans.XmlNCName)get_store().add_attribute_user(RESPONSEOPERATION$6);
}
target.set(responseOperation);
}
}
/**
* Unsets the "responseOperation" attribute
*/
public void unsetResponseOperation()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_attribute(RESPONSEOPERATION$6);
}
}
}