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

org.example.wsHT.impl.XMLTNotificationInterfaceImpl Maven / Gradle / Ivy

The newest version!
/*
 * XML Type:  tNotificationInterface
 * Namespace: http://www.example.org/WS-HT
 * Java type: org.example.wsHT.XMLTNotificationInterface
 *
 * Automatically generated - do not modify.
 */
package org.example.wsHT.impl;
/**
 * An XML tNotificationInterface(@http://www.example.org/WS-HT).
 *
 * This is a complex type.
 */
public class XMLTNotificationInterfaceImpl extends org.example.wsHT.impl.XMLTExtensibleElementsImpl implements org.example.wsHT.XMLTNotificationInterface
{
    private static final long serialVersionUID = 1L;
    
    public XMLTNotificationInterfaceImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName PORTTYPE$0 = 
        new javax.xml.namespace.QName("", "portType");
    private static final javax.xml.namespace.QName OPERATION$2 = 
        new javax.xml.namespace.QName("", "operation");
    
    
    /**
     * Gets the "portType" attribute
     */
    public javax.xml.namespace.QName getPortType()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(PORTTYPE$0);
            if (target == null)
            {
                return null;
            }
            return target.getQNameValue();
        }
    }
    
    /**
     * Gets (as xml) the "portType" attribute
     */
    public org.apache.xmlbeans.XmlQName xgetPortType()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlQName target = null;
            target = (org.apache.xmlbeans.XmlQName)get_store().find_attribute_user(PORTTYPE$0);
            return target;
        }
    }
    
    /**
     * Sets the "portType" attribute
     */
    public void setPortType(javax.xml.namespace.QName portType)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(PORTTYPE$0);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(PORTTYPE$0);
            }
            target.setQNameValue(portType);
        }
    }
    
    /**
     * Sets (as xml) the "portType" attribute
     */
    public void xsetPortType(org.apache.xmlbeans.XmlQName portType)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlQName target = null;
            target = (org.apache.xmlbeans.XmlQName)get_store().find_attribute_user(PORTTYPE$0);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlQName)get_store().add_attribute_user(PORTTYPE$0);
            }
            target.set(portType);
        }
    }
    
    /**
     * Gets the "operation" attribute
     */
    public java.lang.String getOperation()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(OPERATION$2);
            if (target == null)
            {
                return null;
            }
            return target.getStringValue();
        }
    }
    
    /**
     * Gets (as xml) the "operation" attribute
     */
    public org.apache.xmlbeans.XmlNCName xgetOperation()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlNCName target = null;
            target = (org.apache.xmlbeans.XmlNCName)get_store().find_attribute_user(OPERATION$2);
            return target;
        }
    }
    
    /**
     * Sets the "operation" attribute
     */
    public void setOperation(java.lang.String operation)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(OPERATION$2);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(OPERATION$2);
            }
            target.setStringValue(operation);
        }
    }
    
    /**
     * Sets (as xml) the "operation" attribute
     */
    public void xsetOperation(org.apache.xmlbeans.XmlNCName operation)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlNCName target = null;
            target = (org.apache.xmlbeans.XmlNCName)get_store().find_attribute_user(OPERATION$2);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlNCName)get_store().add_attribute_user(OPERATION$2);
            }
            target.set(operation);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy