当前位置: 首页>>代码示例>>Java>>正文


Java OperationInfo.getName方法代码示例

本文整理汇总了Java中org.apache.cxf.service.model.OperationInfo.getName方法的典型用法代码示例。如果您正苦于以下问题:Java OperationInfo.getName方法的具体用法?Java OperationInfo.getName怎么用?Java OperationInfo.getName使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.cxf.service.model.OperationInfo的用法示例。


在下文中一共展示了OperationInfo.getName方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: resolveOperations

import org.apache.cxf.service.model.OperationInfo; //导入方法依赖的package包/类
/**
 * Resolve the possible operations for the current request
 */
private ServiceOperation[] resolveOperations(final SoapMessage message) {
    final MessageInfo messageInfo = message.get(MessageInfo.class);
    final OperationInfo operation = messageInfo.getOperation();
    final QName operationQName = operation.getName();
    // Try to find the operations in the cache
    ServiceOperation[] operations = cachedOperations.get(operationQName);
    if (operations == null) {
        // Cache miss... find the interface method
        final String operationName = operationQName.getLocalPart();
        final String serviceName = operation.getInterface().getService().getName().getLocalPart();
        final Class<?> serviceInterface = CyclosWebServicesClientFactory.serviceInterfaceForName(serviceName);
        for (final Method m : serviceInterface.getMethods()) {
            if (m.getName().equals(operationName)) {
                final Permission permission = m.getAnnotation(Permission.class);
                operations = permission == null ? new ServiceOperation[0] : permission.value();
                break;
            }
        }
        // Store the operations on the cache for further access
        cachedOperations.put(operationQName, operations);
    }
    return operations;
}
 
开发者ID:mateli,项目名称:OpenCyclos,代码行数:27,代码来源:AuthInterceptor.java

示例2: initOperationName

import org.apache.cxf.service.model.OperationInfo; //导入方法依赖的package包/类
private void initOperationName() {
    final MessageInfo messageInfo = soapMessage.get(MessageInfo.class);
    final OperationInfo operation = messageInfo.getOperation();
    final QName operationQName = operation.getName();
    methodName = operationQName.getLocalPart();
}
 
开发者ID:mateli,项目名称:OpenCyclos,代码行数:7,代码来源:WebServiceContext.java


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