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

com.microsoft.schemas.office.x2006.digsig.impl.SignatureInfoV2DocumentImpl Maven / Gradle / Ivy

Go to download

The Apache Commons Codec package contains simple encoder and decoders for various formats such as Base64 and Hexadecimal. In addition to these widely used encoders and decoders, the codec package also maintains a collection of phonetic encoding utilities.

There is a newer version: 62
Show newest version
/*
 * An XML document type.
 * Localname: SignatureInfoV2
 * Namespace: http://schemas.microsoft.com/office/2006/digsig
 * Java type: com.microsoft.schemas.office.x2006.digsig.SignatureInfoV2Document
 *
 * Automatically generated - do not modify.
 */
package com.microsoft.schemas.office.x2006.digsig.impl;
/**
 * A document containing one SignatureInfoV2(@http://schemas.microsoft.com/office/2006/digsig) element.
 *
 * This is a complex type.
 */
public class SignatureInfoV2DocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements com.microsoft.schemas.office.x2006.digsig.SignatureInfoV2Document {
    private static final long serialVersionUID = 1L;
    
    public SignatureInfoV2DocumentImpl(org.apache.xmlbeans.SchemaType sType) {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName SIGNATUREINFOV2$0 = 
        new javax.xml.namespace.QName("http://schemas.microsoft.com/office/2006/digsig", "SignatureInfoV2");
    
    
    /**
     * Gets the "SignatureInfoV2" element
     */
    public com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV2 getSignatureInfoV2() {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV2 target = null;
            target = (com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV2)get_store().find_element_user(SIGNATUREINFOV2$0, 0);
            if (target == null) {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "SignatureInfoV2" element
     */
    public void setSignatureInfoV2(com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV2 signatureInfoV2) {
        generatedSetterHelperImpl(signatureInfoV2, SIGNATUREINFOV2$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "SignatureInfoV2" element
     */
    public com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV2 addNewSignatureInfoV2() {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV2 target = null;
            target = (com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV2)get_store().add_element_user(SIGNATUREINFOV2$0);
            return target;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy