| java.lang.Object org.apache.cxf.ws.policy.PolicyUtils
PolicyUtils | final public class PolicyUtils (Code) | | |
Method Summary | |
public static boolean | contains(Collection<Assertion> assertions, Assertion candidate) Determine if a collection of assertions contains a given assertion, using
the equal method from the Assertion interface. | public static boolean | contains(Collection<Assertion> assertions, Collection<Assertion> candidates) Determine if one collection of assertions contains another collection of assertion, using
the equal method from the Assertion interface. | public static void | logPolicy(Logger log, Level level, String msg, PolicyComponent pc) | public static void | printPolicyComponent(PolicyComponent pc) | public static void | printPolicyComponent(PolicyComponent pc, StringBuffer buf, int level) |
contains | public static boolean contains(Collection<Assertion> assertions, Assertion candidate)(Code) | | Determine if a collection of assertions contains a given assertion, using
the equal method from the Assertion interface.
Parameters: assertions - a collection of assertions Parameters: candidate - the assertion to test true iff candidate is equal to one of the assertions in the collection |
contains | public static boolean contains(Collection<Assertion> assertions, Collection<Assertion> candidates)(Code) | | Determine if one collection of assertions contains another collection of assertion, using
the equal method from the Assertion interface.
Parameters: assertions - a collection of assertions Parameters: candidates - the collections of assertion to test true iff each candidate is equal to one of the assertions in the collection |
printPolicyComponent | public static void printPolicyComponent(PolicyComponent pc)(Code) | | |
printPolicyComponent | public static void printPolicyComponent(PolicyComponent pc, StringBuffer buf, int level)(Code) | | |
|
|