pl.edu.icm.unity.saml.xmlbeans.paos.impl.RequestDocumentImpl Maven / Gradle / Ivy
/*
* An XML document type.
* Localname: Request
* Namespace: urn:liberty:paos:2003-08
* Java type: pl.edu.icm.unity.saml.xmlbeans.paos.RequestDocument
*
* Automatically generated - do not modify.
*/
package pl.edu.icm.unity.saml.xmlbeans.paos.impl;
/**
* A document containing one Request(@urn:liberty:paos:2003-08) element.
*
* This is a complex type.
*/
public class RequestDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements pl.edu.icm.unity.saml.xmlbeans.paos.RequestDocument
{
private static final long serialVersionUID = 1L;
public RequestDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName REQUEST$0 =
new javax.xml.namespace.QName("urn:liberty:paos:2003-08", "Request");
/**
* Gets the "Request" element
*/
public pl.edu.icm.unity.saml.xmlbeans.paos.RequestType getRequest()
{
synchronized (monitor())
{
check_orphaned();
pl.edu.icm.unity.saml.xmlbeans.paos.RequestType target = null;
target = (pl.edu.icm.unity.saml.xmlbeans.paos.RequestType)get_store().find_element_user(REQUEST$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "Request" element
*/
public void setRequest(pl.edu.icm.unity.saml.xmlbeans.paos.RequestType request)
{
synchronized (monitor())
{
check_orphaned();
pl.edu.icm.unity.saml.xmlbeans.paos.RequestType target = null;
target = (pl.edu.icm.unity.saml.xmlbeans.paos.RequestType)get_store().find_element_user(REQUEST$0, 0);
if (target == null)
{
target = (pl.edu.icm.unity.saml.xmlbeans.paos.RequestType)get_store().add_element_user(REQUEST$0);
}
target.set(request);
}
}
/**
* Appends and returns a new empty "Request" element
*/
public pl.edu.icm.unity.saml.xmlbeans.paos.RequestType addNewRequest()
{
synchronized (monitor())
{
check_orphaned();
pl.edu.icm.unity.saml.xmlbeans.paos.RequestType target = null;
target = (pl.edu.icm.unity.saml.xmlbeans.paos.RequestType)get_store().add_element_user(REQUEST$0);
return target;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy