
org.apache.ode.bpel.pmapi.impl.TActivityExtInfoImpl Maven / Gradle / Ivy
/*
* XML Type: tActivityExtInfo
* Namespace: http://www.apache.org/ode/pmapi/types/2006/08/02/
* Java type: org.apache.ode.bpel.pmapi.TActivityExtInfo
*
* Automatically generated - do not modify.
*/
package org.apache.ode.bpel.pmapi.impl;
/**
* An XML tActivityExtInfo(@http://www.apache.org/ode/pmapi/types/2006/08/02/).
*
* This is a complex type.
*/
public class TActivityExtInfoImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ode.bpel.pmapi.TActivityExtInfo
{
private static final long serialVersionUID = 1L;
public TActivityExtInfoImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName AIID$0 =
new javax.xml.namespace.QName("http://www.apache.org/ode/pmapi/types/2006/08/02/", "aiid");
/**
* Gets the "aiid" element
*/
public java.lang.String getAiid()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(AIID$0, 0);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "aiid" element
*/
public org.apache.xmlbeans.XmlString xgetAiid()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlString target = null;
target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(AIID$0, 0);
return target;
}
}
/**
* Sets the "aiid" element
*/
public void setAiid(java.lang.String aiid)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(AIID$0, 0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(AIID$0);
}
target.setStringValue(aiid);
}
}
/**
* Sets (as xml) the "aiid" element
*/
public void xsetAiid(org.apache.xmlbeans.XmlString aiid)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlString target = null;
target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(AIID$0, 0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlString)get_store().add_element_user(AIID$0);
}
target.set(aiid);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy