org.example.wsHT.impl.XMLBusinessAdministratorsDocumentImpl Maven / Gradle / Ivy
The newest version!
/*
* An XML document type.
* Localname: businessAdministrators
* Namespace: http://www.example.org/WS-HT
* Java type: org.example.wsHT.XMLBusinessAdministratorsDocument
*
* Automatically generated - do not modify.
*/
package org.example.wsHT.impl;
/**
* A document containing one businessAdministrators(@http://www.example.org/WS-HT) element.
*
* This is a complex type.
*/
public class XMLBusinessAdministratorsDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.example.wsHT.XMLBusinessAdministratorsDocument
{
private static final long serialVersionUID = 1L;
public XMLBusinessAdministratorsDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName BUSINESSADMINISTRATORS$0 =
new javax.xml.namespace.QName("http://www.example.org/WS-HT", "businessAdministrators");
/**
* Gets the "businessAdministrators" element
*/
public org.example.wsHT.XMLTGenericHumanRole getBusinessAdministrators()
{
synchronized (monitor())
{
check_orphaned();
org.example.wsHT.XMLTGenericHumanRole target = null;
target = (org.example.wsHT.XMLTGenericHumanRole)get_store().find_element_user(BUSINESSADMINISTRATORS$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "businessAdministrators" element
*/
public void setBusinessAdministrators(org.example.wsHT.XMLTGenericHumanRole businessAdministrators)
{
synchronized (monitor())
{
check_orphaned();
org.example.wsHT.XMLTGenericHumanRole target = null;
target = (org.example.wsHT.XMLTGenericHumanRole)get_store().find_element_user(BUSINESSADMINISTRATORS$0, 0);
if (target == null)
{
target = (org.example.wsHT.XMLTGenericHumanRole)get_store().add_element_user(BUSINESSADMINISTRATORS$0);
}
target.set(businessAdministrators);
}
}
/**
* Appends and returns a new empty "businessAdministrators" element
*/
public org.example.wsHT.XMLTGenericHumanRole addNewBusinessAdministrators()
{
synchronized (monitor())
{
check_orphaned();
org.example.wsHT.XMLTGenericHumanRole target = null;
target = (org.example.wsHT.XMLTGenericHumanRole)get_store().add_element_user(BUSINESSADMINISTRATORS$0);
return target;
}
}
}