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

org.apache.ws.scout.uddi.impl.GetPublisherAssertionsImpl Maven / Gradle / Ivy

/*
 * XML Type:  get_publisherAssertions
 * Namespace: urn:uddi-org:api_v2
 * Java type: org.apache.ws.scout.uddi.GetPublisherAssertions
 *
 * Automatically generated - do not modify.
 */
package org.apache.ws.scout.uddi.impl;
/**
 * An XML get_publisherAssertions(@urn:uddi-org:api_v2).
 *
 * This is a complex type.
 */
public class GetPublisherAssertionsImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.ws.scout.uddi.GetPublisherAssertions
{
    
    public GetPublisherAssertionsImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName AUTHINFO$0 = 
        new javax.xml.namespace.QName("urn:uddi-org:api_v2", "authInfo");
    private static final javax.xml.namespace.QName GENERIC$2 = 
        new javax.xml.namespace.QName("", "generic");
    
    
    /**
     * Gets the "authInfo" element
     */
    public java.lang.String getAuthInfo()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(AUTHINFO$0, 0);
            if (target == null)
            {
                return null;
            }
            return target.getStringValue();
        }
    }
    
    /**
     * Gets (as xml) the "authInfo" element
     */
    public org.apache.xmlbeans.XmlString xgetAuthInfo()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlString target = null;
            target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(AUTHINFO$0, 0);
            return target;
        }
    }
    
    /**
     * Sets the "authInfo" element
     */
    public void setAuthInfo(java.lang.String authInfo)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_element_user(AUTHINFO$0, 0);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_element_user(AUTHINFO$0);
            }
            target.setStringValue(authInfo);
        }
    }
    
    /**
     * Sets (as xml) the "authInfo" element
     */
    public void xsetAuthInfo(org.apache.xmlbeans.XmlString authInfo)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlString target = null;
            target = (org.apache.xmlbeans.XmlString)get_store().find_element_user(AUTHINFO$0, 0);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlString)get_store().add_element_user(AUTHINFO$0);
            }
            target.set(authInfo);
        }
    }
    
    /**
     * Gets the "generic" attribute
     */
    public java.lang.String getGeneric()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(GENERIC$2);
            if (target == null)
            {
                return null;
            }
            return target.getStringValue();
        }
    }
    
    /**
     * Gets (as xml) the "generic" attribute
     */
    public org.apache.xmlbeans.XmlString xgetGeneric()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlString target = null;
            target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(GENERIC$2);
            return target;
        }
    }
    
    /**
     * Sets the "generic" attribute
     */
    public void setGeneric(java.lang.String generic)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(GENERIC$2);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(GENERIC$2);
            }
            target.setStringValue(generic);
        }
    }
    
    /**
     * Sets (as xml) the "generic" attribute
     */
    public void xsetGeneric(org.apache.xmlbeans.XmlString generic)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlString target = null;
            target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(GENERIC$2);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlString)get_store().add_attribute_user(GENERIC$2);
            }
            target.set(generic);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy