• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java Assertion类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.apache.neethi.Assertion的典型用法代码示例。如果您正苦于以下问题:Java Assertion类的具体用法?Java Assertion怎么用?Java Assertion使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



Assertion类属于org.apache.neethi包,在下文中一共展示了Assertion类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: getCarbonSecConfigs

import org.apache.neethi.Assertion; //导入依赖的package包/类
private OMElement getCarbonSecConfigs(Policy policy) {
    if (log.isDebugEnabled() && policy != null) {
        log.debug("Retrieving carbonSecConfigs from policy id : " + policy.getId());
    }
    if (policy != null) {
        List it = (List) policy.getAlternatives().next();
        for (Iterator iter = it.iterator(); iter.hasNext(); ) {
            Assertion assertion = (Assertion) iter.next();
            if (assertion instanceof XmlPrimtiveAssertion) {
                OMElement xmlPrimitiveAssertion = (((XmlPrimtiveAssertion) assertion).getValue());
                if (SecurityConstants.CARBON_SEC_CONFIG.equals(xmlPrimitiveAssertion.getLocalName())) {
                    OMElement carbonSecConfigElement = (((XmlPrimtiveAssertion) assertion).getValue());
                    if (log.isDebugEnabled()) {
                        log.debug("carbonSecConfig : " + carbonSecConfigElement.toString());
                    }
                    return carbonSecConfigElement;
                }
            }
        }
    }
    return null;
}
 
开发者ID:wso2,项目名称:carbon-identity-framework,代码行数:23,代码来源:SecurityConfigAdmin.java


示例2: handleMessage

import org.apache.neethi.Assertion; //导入依赖的package包/类
/**
 * {@inheritDoc}
 */
@Override
public void handleMessage(Message message) throws Fault {
    AssertionInfoMap aim = message.get(AssertionInfoMap.class);
    if (aim != null) {
        // http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702/ws-securitypolicy-1.2-spec-os.html#_Toc161826515
        Collection<AssertionInfo> ais = aim.getAssertionInfo(SP12Constants.ENCRYPTED_PARTS);
        if (ais != null) {
            for (AssertionInfo ai : ais) {
                Assertion a = ai.getAssertion();
                if (a instanceof SignedEncryptedParts) {
                    SignedEncryptedParts sep = (SignedEncryptedParts)a;
                    if (!sep.isIgnorable() && !sep.isOptional()) {
                        InboundHandler.getCredentials().add(new ConfidentialityCredential(true));
                        break;
                    }
                }
            }
        }
    }
}
 
开发者ID:jboss-switchyard,项目名称:switchyard,代码行数:24,代码来源:Interceptors.java


示例3: handleMessage

import org.apache.neethi.Assertion; //导入依赖的package包/类
/**
 * {@inheritDoc}
 */
@Override
public void handleMessage(Message message) throws Fault {
    AssertionInfoMap aim = message.get(AssertionInfoMap.class);
    if (aim != null) {
        // http://docs.oasis-open.org/ws-sx/ws-securitypolicy/200702/ws-securitypolicy-1.2-spec-os.html#_Toc161826515
        Collection<AssertionInfo> ais = aim.getAssertionInfo(SP12Constants.ENCRYPTED_PARTS);
        if (ais != null) {
            for (AssertionInfo ai : ais) {
                Assertion a = ai.getAssertion();
                if (a instanceof EncryptedParts) {
                    EncryptedParts sep = (EncryptedParts)a;
                    if (!sep.isIgnorable() && !sep.isOptional()) {
                        InboundHandler.getCredentials().add(new ConfidentialityCredential(true));
                        break;
                    }
                }
            }
        }
    }
}
 
开发者ID:jboss-switchyard,项目名称:switchyard,代码行数:24,代码来源:Interceptors.java


示例4: testSymmBinding

import org.apache.neethi.Assertion; //导入依赖的package包/类
public void testSymmBinding() {
    try {
        Policy p = this.getPolicy(System.getProperty("basedir", ".") +
                "/test-resources/policy-mtom-security.xml");
        List assertions = (List)p.getAlternatives().next();

        boolean isMTOMAssertionFound = false;

        for (Iterator iter = assertions.iterator(); iter.hasNext();) {
            Assertion assertion = (Assertion)iter.next();
            if (assertion instanceof MTOM10Assertion) {
                isMTOMAssertionFound = true;
                MTOM10Assertion mtomModel = (MTOM10Assertion)assertion;
                assertEquals("MIME Serialization assertion not processed", false,
                             mtomModel.isOptional());
            }

        }
        //The Asymm binding mean is not built in the policy processing :-(
        assertTrue("MTOM10 Assertion not found.", isMTOMAssertionFound);

    } catch (Exception e) {
        e.printStackTrace();
        fail(e.getMessage());
    }
}
 
开发者ID:wso2,项目名称:wso2-axis2,代码行数:27,代码来源:MTOMAssertionTest.java


示例5: testMTOM10Optional

import org.apache.neethi.Assertion; //导入依赖的package包/类
public void testMTOM10Optional() {
    //Testing the wsp:Optional attribute in WS-MTOMPolicy 1.0 assertion
    try {
        Policy p = this.getPolicy(System.getProperty("basedir", ".") +
                "/test-resources/policy-mtom-optional.xml");
        List assertions = (List)p.getAlternatives().next();

        for (Iterator iter = assertions.iterator(); iter.hasNext();) {
            Assertion assertion = (Assertion)iter.next();
            if (assertion instanceof MTOM10Assertion) {
                MTOM10Assertion mtomModel = (MTOM10Assertion)assertion;
                assertEquals("wsp:Optional attribute is not processed", true,
                             mtomModel.isOptional());
            }

        }

    } catch (Exception e) {
        e.printStackTrace();
        fail(e.getMessage());
    }

}
 
开发者ID:wso2,项目名称:wso2-axis2,代码行数:24,代码来源:MTOMAssertionTest.java


示例6: testMTOM11Assertion

import org.apache.neethi.Assertion; //导入依赖的package包/类
public void testMTOM11Assertion () {
    // Testing the WS-MTOMPolicy 1.1 assertion
    try {
        Policy p = this.getPolicy(System.getProperty("basedir", ".") +
                "/test-resources/policy-mtom11.xml");
        List assertions = (List)p.getAlternatives().next();

        boolean isMTOMAssertionFound = false;

        for (Iterator iter = assertions.iterator(); iter.hasNext();) {
            Assertion assertion = (Assertion)iter.next();
            if (assertion instanceof MTOM11Assertion) {
                isMTOMAssertionFound = true;
                MTOM11Assertion mtomModel = (MTOM11Assertion)assertion;
            }

        }
        assertTrue("MTOM11 Assertion not found.", isMTOMAssertionFound);

    } catch (Exception e) {
        e.printStackTrace();
        fail(e.getMessage());
    }
    
}
 
开发者ID:wso2,项目名称:wso2-axis2,代码行数:26,代码来源:MTOMAssertionTest.java


示例7: testMTOM11AssertionOptional

import org.apache.neethi.Assertion; //导入依赖的package包/类
public void testMTOM11AssertionOptional() {
  //Testing the wsp:Optional attribute in WS-MTOMPolicy 1.0 assertion
    try {
        Policy p = this.getPolicy(System.getProperty("basedir", ".") +
                "/test-resources/policy-mtom11-optional.xml");
        List assertions = (List)p.getAlternatives().next();

        for (Iterator iter = assertions.iterator(); iter.hasNext();) {
            Assertion assertion = (Assertion)iter.next();
            if (assertion instanceof MTOM10Assertion) {
                MTOM10Assertion mtomModel = (MTOM10Assertion)assertion;
                assertEquals("wsp:Optional attribute is not processed", true,
                             mtomModel.isOptional());
            }

        }

    } catch (Exception e) {
        e.printStackTrace();
        fail(e.getMessage());
    }
}
 
开发者ID:wso2,项目名称:wso2-axis2,代码行数:23,代码来源:MTOMAssertionTest.java


示例8: invoke

import org.apache.neethi.Assertion; //导入依赖的package包/类
/**
* Checks if the message should be MTOMised. If it is not but the policy states that it should be </br>
* then an {@link AxisFault} is thrown.
   * 
   * @param msgCtx the {@link MessageContext}
   * 
   * @throws AxisFault if the message is not MTOMised, but the policy states so.
*/
  public InvocationResponse invoke(MessageContext msgCtx) throws AxisFault {
      Policy policy = msgCtx.getEffectivePolicy();
      if (policy == null) {
          return InvocationResponse.CONTINUE;
      }
      List<Assertion> list = (List<Assertion>) policy.getAlternatives()
              .next();
      for (Assertion assertion : list) {
          if (assertion instanceof MTOMAssertion) {
              String contentType = (String) msgCtx.getProperty(Constants.Configuration.CONTENT_TYPE);
              if (!assertion.isOptional()) {
                  if (contentType == null || contentType.indexOf(MTOMConstants.MTOM_TYPE) == -1) {
                      if (msgCtx.isServerSide()) {
                      throw new AxisFault(
                              "The SOAP REQUEST sent by the client IS NOT MTOMized!");
                      } else {
                          throw new AxisFault(
                          "The SOAP RESPONSE sent by the service IS NOT MTOMized!");
                      }
                  }
              }
          }
      }
      return InvocationResponse.CONTINUE;
  }
 
开发者ID:wso2,项目名称:wso2-axis2,代码行数:34,代码来源:MTOMInHandler.java


示例9: canSupportAssertion

import org.apache.neethi.Assertion; //导入依赖的package包/类
private boolean canSupportAssertion(Assertion assertion, List<AxisModule> moduleList) {

        Module module;

        for (AxisModule axisModule : moduleList) {
            // FIXME is this step really needed ??
            // Shouldn't axisMoudle.getModule always return not-null value ??
            module = axisModule.getModule();

            if (!(module == null || module.canSupportAssertion(assertion))) {
                log.debug(axisModule.getName() + " says it can't support " + assertion.getName());
                return false;
            }
        }

        return true;
    }
 
开发者ID:wso2,项目名称:wso2-axis2,代码行数:18,代码来源:AxisDescription.java


示例10: getRampartConfigs

import org.apache.neethi.Assertion; //导入依赖的package包/类
private RampartConfig getRampartConfigs(Policy policy) {
    if (policy != null) {
        if (log.isDebugEnabled()) {
            log.debug("Retrieving RampartConfigs from policy with id : " + policy.getId());
        }
        List it = (List) policy.getAlternatives().next();
        for (Iterator iter = it.iterator(); iter.hasNext(); ) {
            Assertion assertion = (Assertion) iter.next();
            if (assertion instanceof RampartConfig) {
                return (RampartConfig) assertion;
            }
        }
    }
    return null;
}
 
开发者ID:wso2,项目名称:carbon-identity-framework,代码行数:16,代码来源:SecurityConfigAdmin.java


示例11: canSupportAssertion

import org.apache.neethi.Assertion; //导入依赖的package包/类
public boolean canSupportAssertion(Assertion assertion) {

        if (log.isDebugEnabled()) {
            log.debug("canSupportAssertion called on MTOMPolicy module with "
                    + assertion.getName().toString() + " assertion");
        }

        if (assertion instanceof MTOMAssertion) {
            return true;
        }

        return false;
    }
 
开发者ID:wso2,项目名称:wso2-axis2,代码行数:14,代码来源:MTOMPolicy.java


示例12: invoke

import org.apache.neethi.Assertion; //导入依赖的package包/类
/**
* Checks the effective policy set and based on it the <code>enableMTOM</code> is set to the appropriate value.</br>
* E.g. if the policy states that MTOM is <code>optional</code> then the <code>enableMTOM</code> is set to this value.  
* 
* @param msgCtx the {@link MessageContext}
   * 
   * @throws AxisFault
*/
  public InvocationResponse invoke(MessageContext msgCtx) throws AxisFault {

      Policy policy = msgCtx.getEffectivePolicy();

      if (policy == null) {
          return InvocationResponse.CONTINUE;
      }

      // TODO When we have policy alternatives support we will have to change
      // the implementation.
      List<Assertion> list = (List<Assertion>) policy.getAlternatives().next();

      for (Assertion assertion : list) {
          if (assertion instanceof MTOMAssertion) {
              boolean isOptional = assertion.isOptional();

              if (isOptional) {
                  msgCtx.setProperty(Constants.Configuration.ENABLE_MTOM,
                          Constants.VALUE_OPTIONAL);
              } else {
                  msgCtx.setProperty(Constants.Configuration.ENABLE_MTOM, Constants.VALUE_TRUE);
              }

          }
      }

      return InvocationResponse.CONTINUE;
  }
 
开发者ID:wso2,项目名称:wso2-axis2,代码行数:37,代码来源:MTOMOutHandler.java


示例13: getMTOMAssertion

import org.apache.neethi.Assertion; //导入依赖的package包/类
/**
 * Extracts the MTOM assertion object if it is exists into the policy based on a given {@link AxisDescription}.
 * 
 * @param axisDescription the {@link AxisDescription} object that should be searched.
 * @return {@link MTOMAssertion}  the {@link MTOMAssertion} found. If it is not found "null" is returned.
 */
public static MTOMAssertion getMTOMAssertion(AxisDescription axisDescription) {

    if (axisDescription == null) {
        if (log.isDebugEnabled()) {
            log.debug("AxisDescription passed as parameter has a \"null\" value.");
        }        	
        return null;
    }

    ArrayList policyList = new ArrayList();
    policyList.addAll(axisDescription.getPolicySubject()
            .getAttachedPolicyComponents());

    Policy policy = PolicyUtil.getMergedPolicy(policyList, axisDescription);

    if (policy == null) {
        return null;
    }

    List<Assertion> list = (List<Assertion>) policy.getAlternatives()
            .next();

    for (Assertion assertion : list) {
        if (assertion instanceof MTOMAssertion) {
            return (MTOMAssertion) assertion;
        }
    }

    return null;

}
 
开发者ID:wso2,项目名称:wso2-axis2,代码行数:38,代码来源:Utils.java


示例14: canSupportAssertion

import org.apache.neethi.Assertion; //导入依赖的package包/类
@Override
public boolean canSupportAssertion(Assertion assertion) {
    return true;
}
 
开发者ID:wso2,项目名称:carbon-identity-framework,代码行数:5,代码来源:POXSecurityModule.java


示例15: canSupportAssertion

import org.apache.neethi.Assertion; //导入依赖的package包/类
@Override
public boolean canSupportAssertion(final Assertion asrtn) {
    return false;
}
 
开发者ID:holodeck-b2b,项目名称:Holodeck-B2B,代码行数:5,代码来源:HolodeckB2BCoreImpl.java


示例16: canSupportAssertion

import org.apache.neethi.Assertion; //导入依赖的package包/类
public boolean canSupportAssertion(Assertion assertion) {
    return false;
}
 
开发者ID:wso2,项目名称:carbon-business-process,代码行数:4,代码来源:UnifiedEndpointModule.java


示例17: canSupportAssertion

import org.apache.neethi.Assertion; //导入依赖的package包/类
public boolean canSupportAssertion(Assertion assertion) {
    return true;
}
 
开发者ID:wso2,项目名称:carbon-registry,代码行数:4,代码来源:UddiVersionModule.java


示例18: canSupportAssertion

import org.apache.neethi.Assertion; //导入依赖的package包/类
public boolean canSupportAssertion(Assertion assertion) {
	return false;
}
 
开发者ID:wso2,项目名称:wso2-axis2,代码行数:4,代码来源:MetadataExchangeModule.java


示例19: canSupportAssertion

import org.apache.neethi.Assertion; //导入依赖的package包/类
public boolean canSupportAssertion(Assertion assertion) {
    return false;  //To change body of implemented methods use File | Settings | File Templates.
}
 
开发者ID:wso2,项目名称:wso2-axis2,代码行数:4,代码来源:LogginModule.java


示例20: canSupportAssertion

import org.apache.neethi.Assertion; //导入依赖的package包/类
/**
 * @param assertion
 * @return
 */
public boolean canSupportAssertion(Assertion assertion) {
    // TODO
    return false;
}
 
开发者ID:wso2-attic,项目名称:carbon-qos,代码行数:9,代码来源:CachingModule.java



注:本文中的org.apache.neethi.Assertion类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java Folder类代码示例发布时间:2022-05-22
下一篇:
Java AlphabetCarrying类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap