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

com.microsoft.schemas.office.x2006.keyEncryptor.password.impl.CTPasswordKeyEncryptorImpl Maven / Gradle / Ivy

Go to download

XmlBeans generated from various supplied xsds for encryption and signing: http://msdn.microsoft.com/en-us/library/dd925810(v=office.12).aspx http://www.ecma-international.org/publications/files/ECMA-ST/Office%20Open%20XML%201st%20edition%20Part%202%20(PDF).zip http://www.w3.org/TR/2002/REC-xmldsig-core-20020212/xmldsig-core-schema.xsd http://uri.etsi.org/01903/v1.3.2/XAdES.xsd http://uri.etsi.org/01903/v1.4.1/XAdESv141.xsd http://dublincore.org/schemas/xmls/qdc/2003/04/02/dc.xsd http://dublincore.org/schemas/xmls/qdc/2003/04/02/dcterms.xsd http://dublincore.org/schemas/xmls/qdc/2003/04/02/dcmitype.xsd

The newest version!
/*
 * XML Type:  CT_PasswordKeyEncryptor
 * Namespace: http://schemas.microsoft.com/office/2006/keyEncryptor/password
 * Java type: com.microsoft.schemas.office.x2006.keyEncryptor.password.CTPasswordKeyEncryptor
 *
 * Automatically generated - do not modify.
 */
package com.microsoft.schemas.office.x2006.keyEncryptor.password.impl;
/**
 * An XML CT_PasswordKeyEncryptor(@http://schemas.microsoft.com/office/2006/keyEncryptor/password).
 *
 * This is a complex type.
 */
public class CTPasswordKeyEncryptorImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements com.microsoft.schemas.office.x2006.keyEncryptor.password.CTPasswordKeyEncryptor
{
    
    public CTPasswordKeyEncryptorImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName SALTSIZE$0 = 
        new javax.xml.namespace.QName("", "saltSize");
    private static final javax.xml.namespace.QName BLOCKSIZE$2 = 
        new javax.xml.namespace.QName("", "blockSize");
    private static final javax.xml.namespace.QName KEYBITS$4 = 
        new javax.xml.namespace.QName("", "keyBits");
    private static final javax.xml.namespace.QName HASHSIZE$6 = 
        new javax.xml.namespace.QName("", "hashSize");
    private static final javax.xml.namespace.QName CIPHERALGORITHM$8 = 
        new javax.xml.namespace.QName("", "cipherAlgorithm");
    private static final javax.xml.namespace.QName CIPHERCHAINING$10 = 
        new javax.xml.namespace.QName("", "cipherChaining");
    private static final javax.xml.namespace.QName HASHALGORITHM$12 = 
        new javax.xml.namespace.QName("", "hashAlgorithm");
    private static final javax.xml.namespace.QName SALTVALUE$14 = 
        new javax.xml.namespace.QName("", "saltValue");
    private static final javax.xml.namespace.QName SPINCOUNT$16 = 
        new javax.xml.namespace.QName("", "spinCount");
    private static final javax.xml.namespace.QName ENCRYPTEDVERIFIERHASHINPUT$18 = 
        new javax.xml.namespace.QName("", "encryptedVerifierHashInput");
    private static final javax.xml.namespace.QName ENCRYPTEDVERIFIERHASHVALUE$20 = 
        new javax.xml.namespace.QName("", "encryptedVerifierHashValue");
    private static final javax.xml.namespace.QName ENCRYPTEDKEYVALUE$22 = 
        new javax.xml.namespace.QName("", "encryptedKeyValue");
    
    
    /**
     * Gets the "saltSize" attribute
     */
    public int getSaltSize()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(SALTSIZE$0);
            if (target == null)
            {
                return 0;
            }
            return target.getIntValue();
        }
    }
    
    /**
     * Gets (as xml) the "saltSize" attribute
     */
    public com.microsoft.schemas.office.x2006.encryption.STSaltSize xgetSaltSize()
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.x2006.encryption.STSaltSize target = null;
            target = (com.microsoft.schemas.office.x2006.encryption.STSaltSize)get_store().find_attribute_user(SALTSIZE$0);
            return target;
        }
    }
    
    /**
     * Sets the "saltSize" attribute
     */
    public void setSaltSize(int saltSize)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(SALTSIZE$0);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(SALTSIZE$0);
            }
            target.setIntValue(saltSize);
        }
    }
    
    /**
     * Sets (as xml) the "saltSize" attribute
     */
    public void xsetSaltSize(com.microsoft.schemas.office.x2006.encryption.STSaltSize saltSize)
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.x2006.encryption.STSaltSize target = null;
            target = (com.microsoft.schemas.office.x2006.encryption.STSaltSize)get_store().find_attribute_user(SALTSIZE$0);
            if (target == null)
            {
                target = (com.microsoft.schemas.office.x2006.encryption.STSaltSize)get_store().add_attribute_user(SALTSIZE$0);
            }
            target.set(saltSize);
        }
    }
    
    /**
     * Gets the "blockSize" attribute
     */
    public int getBlockSize()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(BLOCKSIZE$2);
            if (target == null)
            {
                return 0;
            }
            return target.getIntValue();
        }
    }
    
    /**
     * Gets (as xml) the "blockSize" attribute
     */
    public com.microsoft.schemas.office.x2006.encryption.STBlockSize xgetBlockSize()
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.x2006.encryption.STBlockSize target = null;
            target = (com.microsoft.schemas.office.x2006.encryption.STBlockSize)get_store().find_attribute_user(BLOCKSIZE$2);
            return target;
        }
    }
    
    /**
     * Sets the "blockSize" attribute
     */
    public void setBlockSize(int blockSize)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(BLOCKSIZE$2);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(BLOCKSIZE$2);
            }
            target.setIntValue(blockSize);
        }
    }
    
    /**
     * Sets (as xml) the "blockSize" attribute
     */
    public void xsetBlockSize(com.microsoft.schemas.office.x2006.encryption.STBlockSize blockSize)
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.x2006.encryption.STBlockSize target = null;
            target = (com.microsoft.schemas.office.x2006.encryption.STBlockSize)get_store().find_attribute_user(BLOCKSIZE$2);
            if (target == null)
            {
                target = (com.microsoft.schemas.office.x2006.encryption.STBlockSize)get_store().add_attribute_user(BLOCKSIZE$2);
            }
            target.set(blockSize);
        }
    }
    
    /**
     * Gets the "keyBits" attribute
     */
    public long getKeyBits()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(KEYBITS$4);
            if (target == null)
            {
                return 0L;
            }
            return target.getLongValue();
        }
    }
    
    /**
     * Gets (as xml) the "keyBits" attribute
     */
    public com.microsoft.schemas.office.x2006.encryption.STKeyBits xgetKeyBits()
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.x2006.encryption.STKeyBits target = null;
            target = (com.microsoft.schemas.office.x2006.encryption.STKeyBits)get_store().find_attribute_user(KEYBITS$4);
            return target;
        }
    }
    
    /**
     * Sets the "keyBits" attribute
     */
    public void setKeyBits(long keyBits)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(KEYBITS$4);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(KEYBITS$4);
            }
            target.setLongValue(keyBits);
        }
    }
    
    /**
     * Sets (as xml) the "keyBits" attribute
     */
    public void xsetKeyBits(com.microsoft.schemas.office.x2006.encryption.STKeyBits keyBits)
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.x2006.encryption.STKeyBits target = null;
            target = (com.microsoft.schemas.office.x2006.encryption.STKeyBits)get_store().find_attribute_user(KEYBITS$4);
            if (target == null)
            {
                target = (com.microsoft.schemas.office.x2006.encryption.STKeyBits)get_store().add_attribute_user(KEYBITS$4);
            }
            target.set(keyBits);
        }
    }
    
    /**
     * Gets the "hashSize" attribute
     */
    public int getHashSize()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(HASHSIZE$6);
            if (target == null)
            {
                return 0;
            }
            return target.getIntValue();
        }
    }
    
    /**
     * Gets (as xml) the "hashSize" attribute
     */
    public com.microsoft.schemas.office.x2006.encryption.STHashSize xgetHashSize()
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.x2006.encryption.STHashSize target = null;
            target = (com.microsoft.schemas.office.x2006.encryption.STHashSize)get_store().find_attribute_user(HASHSIZE$6);
            return target;
        }
    }
    
    /**
     * Sets the "hashSize" attribute
     */
    public void setHashSize(int hashSize)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(HASHSIZE$6);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(HASHSIZE$6);
            }
            target.setIntValue(hashSize);
        }
    }
    
    /**
     * Sets (as xml) the "hashSize" attribute
     */
    public void xsetHashSize(com.microsoft.schemas.office.x2006.encryption.STHashSize hashSize)
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.x2006.encryption.STHashSize target = null;
            target = (com.microsoft.schemas.office.x2006.encryption.STHashSize)get_store().find_attribute_user(HASHSIZE$6);
            if (target == null)
            {
                target = (com.microsoft.schemas.office.x2006.encryption.STHashSize)get_store().add_attribute_user(HASHSIZE$6);
            }
            target.set(hashSize);
        }
    }
    
    /**
     * Gets the "cipherAlgorithm" attribute
     */
    public com.microsoft.schemas.office.x2006.encryption.STCipherAlgorithm.Enum getCipherAlgorithm()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(CIPHERALGORITHM$8);
            if (target == null)
            {
                return null;
            }
            return (com.microsoft.schemas.office.x2006.encryption.STCipherAlgorithm.Enum)target.getEnumValue();
        }
    }
    
    /**
     * Gets (as xml) the "cipherAlgorithm" attribute
     */
    public com.microsoft.schemas.office.x2006.encryption.STCipherAlgorithm xgetCipherAlgorithm()
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.x2006.encryption.STCipherAlgorithm target = null;
            target = (com.microsoft.schemas.office.x2006.encryption.STCipherAlgorithm)get_store().find_attribute_user(CIPHERALGORITHM$8);
            return target;
        }
    }
    
    /**
     * Sets the "cipherAlgorithm" attribute
     */
    public void setCipherAlgorithm(com.microsoft.schemas.office.x2006.encryption.STCipherAlgorithm.Enum cipherAlgorithm)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(CIPHERALGORITHM$8);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(CIPHERALGORITHM$8);
            }
            target.setEnumValue(cipherAlgorithm);
        }
    }
    
    /**
     * Sets (as xml) the "cipherAlgorithm" attribute
     */
    public void xsetCipherAlgorithm(com.microsoft.schemas.office.x2006.encryption.STCipherAlgorithm cipherAlgorithm)
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.x2006.encryption.STCipherAlgorithm target = null;
            target = (com.microsoft.schemas.office.x2006.encryption.STCipherAlgorithm)get_store().find_attribute_user(CIPHERALGORITHM$8);
            if (target == null)
            {
                target = (com.microsoft.schemas.office.x2006.encryption.STCipherAlgorithm)get_store().add_attribute_user(CIPHERALGORITHM$8);
            }
            target.set(cipherAlgorithm);
        }
    }
    
    /**
     * Gets the "cipherChaining" attribute
     */
    public com.microsoft.schemas.office.x2006.encryption.STCipherChaining.Enum getCipherChaining()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(CIPHERCHAINING$10);
            if (target == null)
            {
                return null;
            }
            return (com.microsoft.schemas.office.x2006.encryption.STCipherChaining.Enum)target.getEnumValue();
        }
    }
    
    /**
     * Gets (as xml) the "cipherChaining" attribute
     */
    public com.microsoft.schemas.office.x2006.encryption.STCipherChaining xgetCipherChaining()
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.x2006.encryption.STCipherChaining target = null;
            target = (com.microsoft.schemas.office.x2006.encryption.STCipherChaining)get_store().find_attribute_user(CIPHERCHAINING$10);
            return target;
        }
    }
    
    /**
     * Sets the "cipherChaining" attribute
     */
    public void setCipherChaining(com.microsoft.schemas.office.x2006.encryption.STCipherChaining.Enum cipherChaining)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(CIPHERCHAINING$10);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(CIPHERCHAINING$10);
            }
            target.setEnumValue(cipherChaining);
        }
    }
    
    /**
     * Sets (as xml) the "cipherChaining" attribute
     */
    public void xsetCipherChaining(com.microsoft.schemas.office.x2006.encryption.STCipherChaining cipherChaining)
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.x2006.encryption.STCipherChaining target = null;
            target = (com.microsoft.schemas.office.x2006.encryption.STCipherChaining)get_store().find_attribute_user(CIPHERCHAINING$10);
            if (target == null)
            {
                target = (com.microsoft.schemas.office.x2006.encryption.STCipherChaining)get_store().add_attribute_user(CIPHERCHAINING$10);
            }
            target.set(cipherChaining);
        }
    }
    
    /**
     * Gets the "hashAlgorithm" attribute
     */
    public com.microsoft.schemas.office.x2006.encryption.STHashAlgorithm.Enum getHashAlgorithm()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(HASHALGORITHM$12);
            if (target == null)
            {
                return null;
            }
            return (com.microsoft.schemas.office.x2006.encryption.STHashAlgorithm.Enum)target.getEnumValue();
        }
    }
    
    /**
     * Gets (as xml) the "hashAlgorithm" attribute
     */
    public com.microsoft.schemas.office.x2006.encryption.STHashAlgorithm xgetHashAlgorithm()
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.x2006.encryption.STHashAlgorithm target = null;
            target = (com.microsoft.schemas.office.x2006.encryption.STHashAlgorithm)get_store().find_attribute_user(HASHALGORITHM$12);
            return target;
        }
    }
    
    /**
     * Sets the "hashAlgorithm" attribute
     */
    public void setHashAlgorithm(com.microsoft.schemas.office.x2006.encryption.STHashAlgorithm.Enum hashAlgorithm)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(HASHALGORITHM$12);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(HASHALGORITHM$12);
            }
            target.setEnumValue(hashAlgorithm);
        }
    }
    
    /**
     * Sets (as xml) the "hashAlgorithm" attribute
     */
    public void xsetHashAlgorithm(com.microsoft.schemas.office.x2006.encryption.STHashAlgorithm hashAlgorithm)
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.x2006.encryption.STHashAlgorithm target = null;
            target = (com.microsoft.schemas.office.x2006.encryption.STHashAlgorithm)get_store().find_attribute_user(HASHALGORITHM$12);
            if (target == null)
            {
                target = (com.microsoft.schemas.office.x2006.encryption.STHashAlgorithm)get_store().add_attribute_user(HASHALGORITHM$12);
            }
            target.set(hashAlgorithm);
        }
    }
    
    /**
     * Gets the "saltValue" attribute
     */
    public byte[] getSaltValue()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(SALTVALUE$14);
            if (target == null)
            {
                return null;
            }
            return target.getByteArrayValue();
        }
    }
    
    /**
     * Gets (as xml) the "saltValue" attribute
     */
    public org.apache.xmlbeans.XmlBase64Binary xgetSaltValue()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBase64Binary target = null;
            target = (org.apache.xmlbeans.XmlBase64Binary)get_store().find_attribute_user(SALTVALUE$14);
            return target;
        }
    }
    
    /**
     * Sets the "saltValue" attribute
     */
    public void setSaltValue(byte[] saltValue)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(SALTVALUE$14);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(SALTVALUE$14);
            }
            target.setByteArrayValue(saltValue);
        }
    }
    
    /**
     * Sets (as xml) the "saltValue" attribute
     */
    public void xsetSaltValue(org.apache.xmlbeans.XmlBase64Binary saltValue)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBase64Binary target = null;
            target = (org.apache.xmlbeans.XmlBase64Binary)get_store().find_attribute_user(SALTVALUE$14);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlBase64Binary)get_store().add_attribute_user(SALTVALUE$14);
            }
            target.set(saltValue);
        }
    }
    
    /**
     * Gets the "spinCount" attribute
     */
    public int getSpinCount()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(SPINCOUNT$16);
            if (target == null)
            {
                return 0;
            }
            return target.getIntValue();
        }
    }
    
    /**
     * Gets (as xml) the "spinCount" attribute
     */
    public com.microsoft.schemas.office.x2006.encryption.STSpinCount xgetSpinCount()
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.x2006.encryption.STSpinCount target = null;
            target = (com.microsoft.schemas.office.x2006.encryption.STSpinCount)get_store().find_attribute_user(SPINCOUNT$16);
            return target;
        }
    }
    
    /**
     * Sets the "spinCount" attribute
     */
    public void setSpinCount(int spinCount)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(SPINCOUNT$16);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(SPINCOUNT$16);
            }
            target.setIntValue(spinCount);
        }
    }
    
    /**
     * Sets (as xml) the "spinCount" attribute
     */
    public void xsetSpinCount(com.microsoft.schemas.office.x2006.encryption.STSpinCount spinCount)
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.x2006.encryption.STSpinCount target = null;
            target = (com.microsoft.schemas.office.x2006.encryption.STSpinCount)get_store().find_attribute_user(SPINCOUNT$16);
            if (target == null)
            {
                target = (com.microsoft.schemas.office.x2006.encryption.STSpinCount)get_store().add_attribute_user(SPINCOUNT$16);
            }
            target.set(spinCount);
        }
    }
    
    /**
     * Gets the "encryptedVerifierHashInput" attribute
     */
    public byte[] getEncryptedVerifierHashInput()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ENCRYPTEDVERIFIERHASHINPUT$18);
            if (target == null)
            {
                return null;
            }
            return target.getByteArrayValue();
        }
    }
    
    /**
     * Gets (as xml) the "encryptedVerifierHashInput" attribute
     */
    public org.apache.xmlbeans.XmlBase64Binary xgetEncryptedVerifierHashInput()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBase64Binary target = null;
            target = (org.apache.xmlbeans.XmlBase64Binary)get_store().find_attribute_user(ENCRYPTEDVERIFIERHASHINPUT$18);
            return target;
        }
    }
    
    /**
     * Sets the "encryptedVerifierHashInput" attribute
     */
    public void setEncryptedVerifierHashInput(byte[] encryptedVerifierHashInput)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ENCRYPTEDVERIFIERHASHINPUT$18);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(ENCRYPTEDVERIFIERHASHINPUT$18);
            }
            target.setByteArrayValue(encryptedVerifierHashInput);
        }
    }
    
    /**
     * Sets (as xml) the "encryptedVerifierHashInput" attribute
     */
    public void xsetEncryptedVerifierHashInput(org.apache.xmlbeans.XmlBase64Binary encryptedVerifierHashInput)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBase64Binary target = null;
            target = (org.apache.xmlbeans.XmlBase64Binary)get_store().find_attribute_user(ENCRYPTEDVERIFIERHASHINPUT$18);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlBase64Binary)get_store().add_attribute_user(ENCRYPTEDVERIFIERHASHINPUT$18);
            }
            target.set(encryptedVerifierHashInput);
        }
    }
    
    /**
     * Gets the "encryptedVerifierHashValue" attribute
     */
    public byte[] getEncryptedVerifierHashValue()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ENCRYPTEDVERIFIERHASHVALUE$20);
            if (target == null)
            {
                return null;
            }
            return target.getByteArrayValue();
        }
    }
    
    /**
     * Gets (as xml) the "encryptedVerifierHashValue" attribute
     */
    public org.apache.xmlbeans.XmlBase64Binary xgetEncryptedVerifierHashValue()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBase64Binary target = null;
            target = (org.apache.xmlbeans.XmlBase64Binary)get_store().find_attribute_user(ENCRYPTEDVERIFIERHASHVALUE$20);
            return target;
        }
    }
    
    /**
     * Sets the "encryptedVerifierHashValue" attribute
     */
    public void setEncryptedVerifierHashValue(byte[] encryptedVerifierHashValue)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ENCRYPTEDVERIFIERHASHVALUE$20);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(ENCRYPTEDVERIFIERHASHVALUE$20);
            }
            target.setByteArrayValue(encryptedVerifierHashValue);
        }
    }
    
    /**
     * Sets (as xml) the "encryptedVerifierHashValue" attribute
     */
    public void xsetEncryptedVerifierHashValue(org.apache.xmlbeans.XmlBase64Binary encryptedVerifierHashValue)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBase64Binary target = null;
            target = (org.apache.xmlbeans.XmlBase64Binary)get_store().find_attribute_user(ENCRYPTEDVERIFIERHASHVALUE$20);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlBase64Binary)get_store().add_attribute_user(ENCRYPTEDVERIFIERHASHVALUE$20);
            }
            target.set(encryptedVerifierHashValue);
        }
    }
    
    /**
     * Gets the "encryptedKeyValue" attribute
     */
    public byte[] getEncryptedKeyValue()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ENCRYPTEDKEYVALUE$22);
            if (target == null)
            {
                return null;
            }
            return target.getByteArrayValue();
        }
    }
    
    /**
     * Gets (as xml) the "encryptedKeyValue" attribute
     */
    public org.apache.xmlbeans.XmlBase64Binary xgetEncryptedKeyValue()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBase64Binary target = null;
            target = (org.apache.xmlbeans.XmlBase64Binary)get_store().find_attribute_user(ENCRYPTEDKEYVALUE$22);
            return target;
        }
    }
    
    /**
     * Sets the "encryptedKeyValue" attribute
     */
    public void setEncryptedKeyValue(byte[] encryptedKeyValue)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ENCRYPTEDKEYVALUE$22);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(ENCRYPTEDKEYVALUE$22);
            }
            target.setByteArrayValue(encryptedKeyValue);
        }
    }
    
    /**
     * Sets (as xml) the "encryptedKeyValue" attribute
     */
    public void xsetEncryptedKeyValue(org.apache.xmlbeans.XmlBase64Binary encryptedKeyValue)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBase64Binary target = null;
            target = (org.apache.xmlbeans.XmlBase64Binary)get_store().find_attribute_user(ENCRYPTEDKEYVALUE$22);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlBase64Binary)get_store().add_attribute_user(ENCRYPTEDKEYVALUE$22);
            }
            target.set(encryptedKeyValue);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy