Class QBuilder
- java.lang.Object
-
- org.opensaml.core.xml.AbstractXMLObjectBuilder<Q>
-
- org.opensaml.xmlsec.signature.impl.QBuilder
-
- All Implemented Interfaces:
XMLObjectBuilder<Q>,XMLSignatureBuilder<Q>
public class QBuilder extends AbstractXMLObjectBuilder<Q> implements XMLSignatureBuilder<Q>
Builder ofQ.
-
-
Constructor Summary
Constructors Constructor Description QBuilder()Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description QbuildObject()Builds an XMLObject using the default name and namespace information provided by the XML Signature specifications.QbuildObject(String namespaceURI, String localName, String namespacePrefix)Creates an XMLObject with a given fully qualified name.-
Methods inherited from class org.opensaml.core.xml.AbstractXMLObjectBuilder
buildObject, buildObject, buildObject, buildObject
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.opensaml.core.xml.XMLObjectBuilder
buildObject, buildObject, buildObject, buildObject
-
-
-
-
Method Detail
-
buildObject
public Q buildObject(String namespaceURI, String localName, String namespacePrefix)
Creates an XMLObject with a given fully qualified name.- Specified by:
buildObjectin interfaceXMLObjectBuilder<Q>- Specified by:
buildObjectin classAbstractXMLObjectBuilder<Q>- Parameters:
namespaceURI- the URI of the namespace the Element represented by this XMLObject will be inlocalName- the local name of the Element represented by this XMLObjectnamespacePrefix- the namespace prefix of the Element represented by this XMLObject- Returns:
- the constructed XMLObject
-
buildObject
public Q buildObject()
Builds an XMLObject using the default name and namespace information provided by the XML Signature specifications.- Specified by:
buildObjectin interfaceXMLSignatureBuilder<Q>- Returns:
- built XMLObject
-
-