All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.example.wsHT.api.xsd.impl.XMLRecipientNotAllowedDocumentImpl Maven / Gradle / Ivy

The newest version!
/*
 * An XML document type.
 * Localname: recipientNotAllowed
 * Namespace: http://www.example.org/WS-HT/api/xsd
 * Java type: org.example.wsHT.api.xsd.XMLRecipientNotAllowedDocument
 *
 * Automatically generated - do not modify.
 */
package org.example.wsHT.api.xsd.impl;
/**
 * A document containing one recipientNotAllowed(@http://www.example.org/WS-HT/api/xsd) element.
 *
 * This is a complex type.
 */
public class XMLRecipientNotAllowedDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.example.wsHT.api.xsd.XMLRecipientNotAllowedDocument
{
    private static final long serialVersionUID = 1L;
    
    public XMLRecipientNotAllowedDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName RECIPIENTNOTALLOWED$0 = 
        new javax.xml.namespace.QName("http://www.example.org/WS-HT/api/xsd", "recipientNotAllowed");
    
    
    /**
     * Gets the "recipientNotAllowed" element
     */
    public java.lang.String getRecipientNotAllowed()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(RECIPIENTNOTALLOWED$0, 0);
            if (target == null)
            {
                return null;
            }
            return target.getStringValue();
        }
    }
    
    /**
     * Gets (as xml) the "recipientNotAllowed" element
     */
    public org.apache.xmlbeans.XmlString xgetRecipientNotAllowed()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlString target = null;
            target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(RECIPIENTNOTALLOWED$0, 0);
            return target;
        }
    }
    
    /**
     * Sets the "recipientNotAllowed" element
     */
    public void setRecipientNotAllowed(java.lang.String recipientNotAllowed)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(RECIPIENTNOTALLOWED$0, 0);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(RECIPIENTNOTALLOWED$0);
            }
            target.setStringValue(recipientNotAllowed);
        }
    }
    
    /**
     * Sets (as xml) the "recipientNotAllowed" element
     */
    public void xsetRecipientNotAllowed(org.apache.xmlbeans.XmlString recipientNotAllowed)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlString target = null;
            target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(RECIPIENTNOTALLOWED$0, 0);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlString)get_store().add_element_user(RECIPIENTNOTALLOWED$0);
            }
            target.set(recipientNotAllowed);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy