Repository: cxf Updated Branches: refs/heads/3.0.x-fixes 1645e0e7e -> 6b72f2024
[CXF-6495] Inconsistent RMAsserion may be built for CXF 3.x Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/6b72f202 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/6b72f202 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/6b72f202 Branch: refs/heads/3.0.x-fixes Commit: 6b72f20242b05b0b6cf56c6e026cdcbf3bc40051 Parents: 1645e0e Author: Akitoshi Yoshida <[email protected]> Authored: Mon Jul 13 21:42:50 2015 +0200 Committer: Akitoshi Yoshida <[email protected]> Committed: Mon Jul 13 21:43:38 2015 +0200 ---------------------------------------------------------------------- .../org/apache/cxf/ws/rm/policy/RM10AssertionBuilder.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/6b72f202/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/policy/RM10AssertionBuilder.java ---------------------------------------------------------------------- diff --git a/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/policy/RM10AssertionBuilder.java b/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/policy/RM10AssertionBuilder.java index 6e96ca8..2e9b2a1 100644 --- a/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/policy/RM10AssertionBuilder.java +++ b/rt/ws/rm/src/main/java/org/apache/cxf/ws/rm/policy/RM10AssertionBuilder.java @@ -28,7 +28,6 @@ import javax.xml.namespace.QName; import org.apache.cxf.ws.policy.builder.jaxb.JaxbAssertion; import org.apache.cxf.ws.policy.builder.jaxb.JaxbAssertionBuilder; import org.apache.cxf.ws.rm.RM10Constants; -import org.apache.cxf.ws.rm.RM11Constants; import org.apache.cxf.ws.rmp.v200502.RMAssertion; import org.apache.neethi.Assertion; import org.apache.neethi.Constants; @@ -53,13 +52,13 @@ public class RM10AssertionBuilder extends JaxbAssertionBuilder<RMAssertion> { class RMPolicyAssertion extends JaxbAssertion<RMAssertion> { RMPolicyAssertion() { - super(RM11Constants.WSRMP_RMASSERTION_QNAME, false); + super(RM10Constants.WSRMP_RMASSERTION_QNAME, false); } RMPolicyAssertion(boolean opt) { - super(RM11Constants.WSRMP_RMASSERTION_QNAME, opt); + super(RM10Constants.WSRMP_RMASSERTION_QNAME, opt); } RMPolicyAssertion(boolean opt, boolean ignore) { - super(RM11Constants.WSRMP_RMASSERTION_QNAME, opt, ignore); + super(RM10Constants.WSRMP_RMASSERTION_QNAME, opt, ignore); } @Override
