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

net.opengis.wns.x00.impl.CommunicationMessageTypeImpl Maven / Gradle / Ivy

The newest version!
/*
 * XML Type:  CommunicationMessageType
 * Namespace: http://www.opengis.net/wns/0.0
 * Java type: net.opengis.wns.x00.CommunicationMessageType
 *
 * Automatically generated - do not modify.
 */
package net.opengis.wns.x00.impl;
/**
 * An XML CommunicationMessageType(@http://www.opengis.net/wns/0.0).
 *
 * This is a complex type.
 */
public class CommunicationMessageTypeImpl extends net.opengis.wns.x00.impl.WNSMessageTypeImpl implements net.opengis.wns.x00.CommunicationMessageType
{
    private static final long serialVersionUID = 1L;
    
    public CommunicationMessageTypeImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName CORRID$0 = 
        new javax.xml.namespace.QName("http://www.opengis.net/wns/0.0", "CorrID");
    private static final javax.xml.namespace.QName CALLBACKURL$2 = 
        new javax.xml.namespace.QName("http://www.opengis.net/wns/0.0", "CallbackURL");
    
    
    /**
     * Gets the "CorrID" element
     */
    public java.lang.String getCorrID()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(CORRID$0, 0);
            if (target == null)
            {
                return null;
            }
            return target.getStringValue();
        }
    }
    
    /**
     * Gets (as xml) the "CorrID" element
     */
    public org.apache.xmlbeans.XmlToken xgetCorrID()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlToken target = null;
            target = (org.apache.xmlbeans.XmlToken)get_store().find_element_user(CORRID$0, 0);
            return target;
        }
    }
    
    /**
     * Sets the "CorrID" element
     */
    public void setCorrID(java.lang.String corrID)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(CORRID$0, 0);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(CORRID$0);
            }
            target.setStringValue(corrID);
        }
    }
    
    /**
     * Sets (as xml) the "CorrID" element
     */
    public void xsetCorrID(org.apache.xmlbeans.XmlToken corrID)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlToken target = null;
            target = (org.apache.xmlbeans.XmlToken)get_store().find_element_user(CORRID$0, 0);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlToken)get_store().add_element_user(CORRID$0);
            }
            target.set(corrID);
        }
    }
    
    /**
     * Gets the "CallbackURL" element
     */
    public java.lang.String getCallbackURL()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(CALLBACKURL$2, 0);
            if (target == null)
            {
                return null;
            }
            return target.getStringValue();
        }
    }
    
    /**
     * Gets (as xml) the "CallbackURL" element
     */
    public org.apache.xmlbeans.XmlAnyURI xgetCallbackURL()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlAnyURI target = null;
            target = (org.apache.xmlbeans.XmlAnyURI)get_store().find_element_user(CALLBACKURL$2, 0);
            return target;
        }
    }
    
    /**
     * Sets the "CallbackURL" element
     */
    public void setCallbackURL(java.lang.String callbackURL)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(CALLBACKURL$2, 0);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(CALLBACKURL$2);
            }
            target.setStringValue(callbackURL);
        }
    }
    
    /**
     * Sets (as xml) the "CallbackURL" element
     */
    public void xsetCallbackURL(org.apache.xmlbeans.XmlAnyURI callbackURL)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlAnyURI target = null;
            target = (org.apache.xmlbeans.XmlAnyURI)get_store().find_element_user(CALLBACKURL$2, 0);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlAnyURI)get_store().add_element_user(CALLBACKURL$2);
            }
            target.set(callbackURL);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy