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