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

pl.edu.icm.unity.saml.xmlbeans.soap.impl.EncodingStyleAttributeImpl Maven / Gradle / Ivy

/*
 * An XML attribute type.
 * Localname: encodingStyle
 * Namespace: http://schemas.xmlsoap.org/soap/envelope/
 * Java type: pl.edu.icm.unity.saml.xmlbeans.soap.EncodingStyleAttribute
 *
 * Automatically generated - do not modify.
 */
package pl.edu.icm.unity.saml.xmlbeans.soap.impl;
/**
 * A document containing one encodingStyle(@http://schemas.xmlsoap.org/soap/envelope/) attribute.
 *
 * This is a complex type.
 */
public class EncodingStyleAttributeImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements pl.edu.icm.unity.saml.xmlbeans.soap.EncodingStyleAttribute
{
    private static final long serialVersionUID = 1L;
    
    public EncodingStyleAttributeImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName ENCODINGSTYLE$0 = 
        new javax.xml.namespace.QName("http://schemas.xmlsoap.org/soap/envelope/", "encodingStyle");
    
    
    /**
     * Gets the "encodingStyle" attribute
     */
    public java.util.List getEncodingStyle()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ENCODINGSTYLE$0);
            if (target == null)
            {
                return null;
            }
            return target.getListValue();
        }
    }
    
    /**
     * Gets (as xml) the "encodingStyle" attribute
     */
    public pl.edu.icm.unity.saml.xmlbeans.soap.EncodingStyle xgetEncodingStyle()
    {
        synchronized (monitor())
        {
            check_orphaned();
            pl.edu.icm.unity.saml.xmlbeans.soap.EncodingStyle target = null;
            target = (pl.edu.icm.unity.saml.xmlbeans.soap.EncodingStyle)get_store().find_attribute_user(ENCODINGSTYLE$0);
            return target;
        }
    }
    
    /**
     * True if has "encodingStyle" attribute
     */
    public boolean isSetEncodingStyle()
    {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().find_attribute_user(ENCODINGSTYLE$0) != null;
        }
    }
    
    /**
     * Sets the "encodingStyle" attribute
     */
    public void setEncodingStyle(java.util.List encodingStyle)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ENCODINGSTYLE$0);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(ENCODINGSTYLE$0);
            }
            target.setListValue(encodingStyle);
        }
    }
    
    /**
     * Sets (as xml) the "encodingStyle" attribute
     */
    public void xsetEncodingStyle(pl.edu.icm.unity.saml.xmlbeans.soap.EncodingStyle encodingStyle)
    {
        synchronized (monitor())
        {
            check_orphaned();
            pl.edu.icm.unity.saml.xmlbeans.soap.EncodingStyle target = null;
            target = (pl.edu.icm.unity.saml.xmlbeans.soap.EncodingStyle)get_store().find_attribute_user(ENCODINGSTYLE$0);
            if (target == null)
            {
                target = (pl.edu.icm.unity.saml.xmlbeans.soap.EncodingStyle)get_store().add_attribute_user(ENCODINGSTYLE$0);
            }
            target.set(encodingStyle);
        }
    }
    
    /**
     * Unsets the "encodingStyle" attribute
     */
    public void unsetEncodingStyle()
    {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_attribute(ENCODINGSTYLE$0);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy