com.microsoft.schemas.office.x2006.digsig.SignatureInfoV1Document Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apache-poi-ooxml Show documentation
Show all versions of apache-poi-ooxml Show documentation
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.
/*
* An XML document type.
* Localname: SignatureInfoV1
* Namespace: http://schemas.microsoft.com/office/2006/digsig
* Java type: com.microsoft.schemas.office.x2006.digsig.SignatureInfoV1Document
*
* Automatically generated - do not modify.
*/
package com.microsoft.schemas.office.x2006.digsig;
import org.apache.xmlbeans.impl.schema.ElementFactory;
import org.apache.xmlbeans.impl.schema.AbstractDocumentFactory;
import org.apache.xmlbeans.impl.schema.DocumentFactory;
import org.apache.xmlbeans.impl.schema.SimpleTypeFactory;
/**
* A document containing one SignatureInfoV1(@http://schemas.microsoft.com/office/2006/digsig) element.
*
* This is a complex type.
*/
public interface SignatureInfoV1Document extends org.apache.xmlbeans.XmlObject {
DocumentFactory Factory = new DocumentFactory<>(org.apache.poi.schemas.ooxml.system.ooxml.TypeSystemHolder.typeSystem, "signatureinfov14a6bdoctype");
org.apache.xmlbeans.SchemaType type = Factory.getType();
/**
* Gets the "SignatureInfoV1" element
*/
com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV1 getSignatureInfoV1();
/**
* Sets the "SignatureInfoV1" element
*/
void setSignatureInfoV1(com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV1 signatureInfoV1);
/**
* Appends and returns a new empty "SignatureInfoV1" element
*/
com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV1 addNewSignatureInfoV1();
}