com.microsoft.schemas.office.x2006.digsig.impl.SignatureInfoV1DocumentImpl 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.impl;
/**
* A document containing one SignatureInfoV1(@http://schemas.microsoft.com/office/2006/digsig) element.
*
* This is a complex type.
*/
public class SignatureInfoV1DocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements com.microsoft.schemas.office.x2006.digsig.SignatureInfoV1Document {
private static final long serialVersionUID = 1L;
public SignatureInfoV1DocumentImpl(org.apache.xmlbeans.SchemaType sType) {
super(sType);
}
private static final javax.xml.namespace.QName SIGNATUREINFOV1$0 =
new javax.xml.namespace.QName("http://schemas.microsoft.com/office/2006/digsig", "SignatureInfoV1");
/**
* Gets the "SignatureInfoV1" element
*/
public com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV1 getSignatureInfoV1() {
synchronized (monitor())
{
check_orphaned();
com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV1 target = null;
target = (com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV1)get_store().find_element_user(SIGNATUREINFOV1$0, 0);
if (target == null) {
return null;
}
return target;
}
}
/**
* Sets the "SignatureInfoV1" element
*/
public void setSignatureInfoV1(com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV1 signatureInfoV1) {
generatedSetterHelperImpl(signatureInfoV1, SIGNATUREINFOV1$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
}
/**
* Appends and returns a new empty "SignatureInfoV1" element
*/
public com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV1 addNewSignatureInfoV1() {
synchronized (monitor())
{
check_orphaned();
com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV1 target = null;
target = (com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV1)get_store().add_element_user(SIGNATUREINFOV1$0);
return target;
}
}
}