use of org.apache.camel.component.xmlsecurity.api.XmlSignatureProperties in project camel by apache.
the class XmlSignerProcessor method getSignatureProperties.
protected XmlSignatureProperties.Output getSignatureProperties(XmlSignatureProperties.Input input) throws Exception {
//NOPMD
XmlSignatureProperties propGetter = getConfiguration().getProperties();
XmlSignatureProperties.Output propsOutput = null;
if (propGetter != null) {
propsOutput = propGetter.get(input);
}
return propsOutput;
}
Aggregations