Package org.apache.cxf.ws.policy
Interface PolicyBuilder
-
- All Known Implementing Classes:
PolicyBuilderImpl
public interface PolicyBuilderPolicyBuilder provides methods to create Policy and PolicyReferenceObjects from DOM elements.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.apache.neethi.PolicygetPolicy(InputStream stream)Creates a Policy object from an InputStream.org.apache.neethi.PolicygetPolicy(Object element)Creates a Policy object from an DOM element.org.apache.neethi.PolicyReferencegetPolicyReference(Object element)Creates a PolicyReference object from a DOM element.org.apache.neethi.PolicyRegistrygetPolicyRegistry()Return the PolicyRegistry associated with the builder
-
-
-
Method Detail
-
getPolicyReference
org.apache.neethi.PolicyReference getPolicyReference(Object element)
Creates a PolicyReference object from a DOM element.- Parameters:
element- the element- Returns:
- the PolicyReference object constructed from the element
-
getPolicy
org.apache.neethi.Policy getPolicy(Object element)
Creates a Policy object from an DOM element.- Parameters:
element- the element- Returns:
- the Policy object constructed from the element
-
getPolicy
org.apache.neethi.Policy getPolicy(InputStream stream) throws IOException, ParserConfigurationException, SAXException
Creates a Policy object from an InputStream.- Parameters:
stream- the inputstream- Returns:
- the Policy object constructed from the element
- Throws:
IOExceptionParserConfigurationExceptionSAXException
-
getPolicyRegistry
org.apache.neethi.PolicyRegistry getPolicyRegistry()
Return the PolicyRegistry associated with the builder- Returns:
- the PolicyRegistry
-
-