net.opengis.wns.x00.impl.UpdateSingleUserRegistrationDocumentImpl Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: UpdateSingleUserRegistration
* Namespace: http://www.opengis.net/wns/0.0
* Java type: net.opengis.wns.x00.UpdateSingleUserRegistrationDocument
*
* Automatically generated - do not modify.
*/
package net.opengis.wns.x00.impl;
/**
* A document containing one UpdateSingleUserRegistration(@http://www.opengis.net/wns/0.0) element.
*
* This is a complex type.
*/
public class UpdateSingleUserRegistrationDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements net.opengis.wns.x00.UpdateSingleUserRegistrationDocument
{
private static final long serialVersionUID = 1L;
public UpdateSingleUserRegistrationDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName UPDATESINGLEUSERREGISTRATION$0 =
new javax.xml.namespace.QName("http://www.opengis.net/wns/0.0", "UpdateSingleUserRegistration");
/**
* Gets the "UpdateSingleUserRegistration" element
*/
public net.opengis.wns.x00.UpdateSingleUserRegistrationType getUpdateSingleUserRegistration()
{
synchronized (monitor())
{
check_orphaned();
net.opengis.wns.x00.UpdateSingleUserRegistrationType target = null;
target = (net.opengis.wns.x00.UpdateSingleUserRegistrationType)get_store().find_element_user(UPDATESINGLEUSERREGISTRATION$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "UpdateSingleUserRegistration" element
*/
public void setUpdateSingleUserRegistration(net.opengis.wns.x00.UpdateSingleUserRegistrationType updateSingleUserRegistration)
{
synchronized (monitor())
{
check_orphaned();
net.opengis.wns.x00.UpdateSingleUserRegistrationType target = null;
target = (net.opengis.wns.x00.UpdateSingleUserRegistrationType)get_store().find_element_user(UPDATESINGLEUSERREGISTRATION$0, 0);
if (target == null)
{
target = (net.opengis.wns.x00.UpdateSingleUserRegistrationType)get_store().add_element_user(UPDATESINGLEUSERREGISTRATION$0);
}
target.set(updateSingleUserRegistration);
}
}
/**
* Appends and returns a new empty "UpdateSingleUserRegistration" element
*/
public net.opengis.wns.x00.UpdateSingleUserRegistrationType addNewUpdateSingleUserRegistration()
{
synchronized (monitor())
{
check_orphaned();
net.opengis.wns.x00.UpdateSingleUserRegistrationType target = null;
target = (net.opengis.wns.x00.UpdateSingleUserRegistrationType)get_store().add_element_user(UPDATESINGLEUSERREGISTRATION$0);
return target;
}
}
}