本文整理汇总了Java中com.sun.xml.internal.ws.api.model.JavaMethod类的典型用法代码示例。如果您正苦于以下问题:Java JavaMethod类的具体用法?Java JavaMethod怎么用?Java JavaMethod使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
JavaMethod类属于com.sun.xml.internal.ws.api.model包,在下文中一共展示了JavaMethod类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: getDefaultAction
import com.sun.xml.internal.ws.api.model.JavaMethod; //导入依赖的package包/类
protected static final String getDefaultAction(JavaMethod method) {
String tns = method.getOwner().getTargetNamespace();
String delim = "/";
// TODO: is this the correct way to find the separator ?
try {
URI uri = new URI(tns);
if(uri.getScheme().equalsIgnoreCase("urn"))
delim = ":";
} catch (URISyntaxException e) {
LOGGER.warning("TargetNamespace of WebService is not a valid URI");
}
if (tns.endsWith(delim))
tns = tns.substring(0, tns.length() - 1);
//this assumes that fromjava case there won't be input name.
// if there is input name in future, then here name=inputName
//else use operation name as follows.
String name = (method.getMEP().isOneWay())?method.getOperationName():method.getOperationName()+"Request";
return new StringBuilder(tns).append(delim).append(
method.getOwner().getPortTypeName().getLocalPart()).append(
delim).append(name).toString();
}
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:23,代码来源:W3CAddressingWSDLGeneratorExtension.java
示例2: addOperationFaultExtension
import com.sun.xml.internal.ws.api.model.JavaMethod; //导入依赖的package包/类
@Override
public void addOperationFaultExtension(TypedXmlWriter fault, JavaMethod method, CheckedException ce) {
if (!enabled)
return;
Action a = method.getSEIMethod().getAnnotation(Action.class);
Class[] exs = method.getSEIMethod().getExceptionTypes();
if (exs == null)
return;
if (a != null && a.fault() != null) {
for (FaultAction fa : a.fault()) {
if (fa.className().getName().equals(ce.getExceptionClass().getName())) {
if (fa.value().equals(""))
return;
addAttribute(fault, fa.value());
return;
}
}
}
}
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:24,代码来源:W3CAddressingWSDLGeneratorExtension.java
示例3: getOutputAction
import com.sun.xml.internal.ws.api.model.JavaMethod; //导入依赖的package包/类
public String getOutputAction(Packet packet) {
//String action = AddressingVersion.UNSET_OUTPUT_ACTION;
String action = null;
WSDLOperationMapping wsdlOp = packet.getWSDLOperationMapping();
if (wsdlOp != null) {
JavaMethod javaMethod = wsdlOp.getJavaMethod();
if (javaMethod != null) {
JavaMethodImpl jm = (JavaMethodImpl) javaMethod;
if (jm != null && jm.getOutputAction() != null && !jm.getOutputAction().equals("")) {
return jm.getOutputAction();
}
}
WSDLBoundOperation wbo = wsdlOp.getWSDLBoundOperation();
if (wbo != null) return getOutputAction(wbo);
}
return action;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:18,代码来源:WsaTubeHelper.java
示例4: addOperationInputExtension
import com.sun.xml.internal.ws.api.model.JavaMethod; //导入依赖的package包/类
@Override
public void addOperationInputExtension(TypedXmlWriter input, JavaMethod method) {
if (!enabled)
return;
Action a = method.getSEIMethod().getAnnotation(Action.class);
if (a != null && !a.input().equals("")) {
addAttribute(input, a.input());
} else {
String soapAction = method.getBinding().getSOAPAction();
// in SOAP 1.2 soapAction is optional ...
if (soapAction == null || soapAction.equals("")) {
//hack: generate default action for interop with .Net3.0 when soapAction is non-empty
String defaultAction = getDefaultAction(method);
addAttribute(input, defaultAction);
}
}
}
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:20,代码来源:W3CAddressingWSDLGeneratorExtension.java
示例5: getDefaultFaultAction
import com.sun.xml.internal.ws.api.model.JavaMethod; //导入依赖的package包/类
@SuppressWarnings("FinalStaticMethod")
public static final String getDefaultFaultAction(JavaMethod method, CheckedException ce) {
String tns = method.getOwner().getTargetNamespace();
String delim = getDelimiter(tns);
if (tns.endsWith(delim)) {
tns = tns.substring(0, tns.length() - 1);
}
return new StringBuilder(tns).append(delim).append(
method.getOwner().getPortTypeName().getLocalPart()).append(
delim).append(method.getOperationName()).append(delim).append("Fault").append(delim).append(ce.getExceptionClass().getSimpleName()).toString();
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:13,代码来源:WsaActionUtil.java
示例6: addBindingOperationExtension
import com.sun.xml.internal.ws.api.model.JavaMethod; //导入依赖的package包/类
@Override
public void addBindingOperationExtension(final TypedXmlWriter operation, final JavaMethod method) {
LOGGER.entering();
final QName operationName = (method == null) ? null : new QName(method.getOwner().getTargetNamespace(), method.getOperationName());
selectAndProcessBindingSubject(operation, WSDLBoundOperation.class, ScopeType.OPERATION, operationName);
LOGGER.exiting();
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:8,代码来源:PolicyWSDLGeneratorExtension.java
示例7: addInputMessageExtension
import com.sun.xml.internal.ws.api.model.JavaMethod; //导入依赖的package包/类
@Override
public void addInputMessageExtension(final TypedXmlWriter message, final JavaMethod method) {
LOGGER.entering();
final String messageName = (null == method) ? null : method.getRequestMessageName();
selectAndProcessSubject(message, WSDLMessage.class, ScopeType.INPUT_MESSAGE, messageName);
LOGGER.exiting();
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:8,代码来源:PolicyWSDLGeneratorExtension.java
示例8: addOutputMessageExtension
import com.sun.xml.internal.ws.api.model.JavaMethod; //导入依赖的package包/类
@Override
public void addOutputMessageExtension(final TypedXmlWriter message, final JavaMethod method) {
LOGGER.entering();
final String messageName = (null == method) ? null : method.getResponseMessageName();
selectAndProcessSubject(message, WSDLMessage.class, ScopeType.OUTPUT_MESSAGE, messageName);
LOGGER.exiting();
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:8,代码来源:PolicyWSDLGeneratorExtension.java
示例9: addFaultMessageExtension
import com.sun.xml.internal.ws.api.model.JavaMethod; //导入依赖的package包/类
@Override
public void addFaultMessageExtension(final TypedXmlWriter message, final JavaMethod method, final CheckedException exception) {
LOGGER.entering();
final String messageName = (null == exception) ? null : exception.getMessageName();
selectAndProcessSubject(message, WSDLMessage.class, ScopeType.FAULT_MESSAGE, messageName);
LOGGER.exiting();
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:8,代码来源:PolicyWSDLGeneratorExtension.java
示例10: addOperationInputExtension
import com.sun.xml.internal.ws.api.model.JavaMethod; //导入依赖的package包/类
@Override
public void addOperationInputExtension(final TypedXmlWriter input, final JavaMethod method) {
LOGGER.entering();
final String messageName = (null == method) ? null : method.getRequestMessageName();
selectAndProcessSubject(input, WSDLInput.class, ScopeType.INPUT_MESSAGE, messageName);
LOGGER.exiting();
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:8,代码来源:PolicyWSDLGeneratorExtension.java
示例11: addOperationOutputExtension
import com.sun.xml.internal.ws.api.model.JavaMethod; //导入依赖的package包/类
@Override
public void addOperationOutputExtension(final TypedXmlWriter output, final JavaMethod method) {
LOGGER.entering();
final String messageName = (null == method) ? null : method.getResponseMessageName();
selectAndProcessSubject(output, WSDLOutput.class, ScopeType.OUTPUT_MESSAGE, messageName);
LOGGER.exiting();
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:8,代码来源:PolicyWSDLGeneratorExtension.java
示例12: addOperationFaultExtension
import com.sun.xml.internal.ws.api.model.JavaMethod; //导入依赖的package包/类
@Override
public void addOperationFaultExtension(final TypedXmlWriter fault, final JavaMethod method, final CheckedException exception) {
LOGGER.entering();
final String messageName = (null == exception) ? null : exception.getMessageName();
selectAndProcessSubject(fault, WSDLFault.class, ScopeType.FAULT_MESSAGE, messageName);
LOGGER.exiting();
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:8,代码来源:PolicyWSDLGeneratorExtension.java
示例13: addBindingOperationOutputExtension
import com.sun.xml.internal.ws.api.model.JavaMethod; //导入依赖的package包/类
@Override
public void addBindingOperationOutputExtension(final TypedXmlWriter output, final JavaMethod method) {
LOGGER.entering();
final QName operationName = new QName(method.getOwner().getTargetNamespace(), method.getOperationName());
selectAndProcessBindingSubject(output, WSDLBoundOperation.class, ScopeType.OUTPUT_MESSAGE, operationName);
LOGGER.exiting();
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:8,代码来源:PolicyWSDLGeneratorExtension.java
示例14: addBindingOperationFaultExtension
import com.sun.xml.internal.ws.api.model.JavaMethod; //导入依赖的package包/类
@Override
public void addBindingOperationFaultExtension(final TypedXmlWriter writer, final JavaMethod method, final CheckedException exception) {
LOGGER.entering(writer, method, exception);
if (subjects != null) {
for (PolicySubject subject : subjects) { // iterate over all subjects in policy map
if (this.policyMap.isFaultMessageSubject(subject)) {
final Object concreteSubject = subject.getSubject();
if (concreteSubject != null) {
final String exceptionName = exception == null ? null : exception.getMessageName();
if (exceptionName == null) { // no name provided to check
writePolicyOrReferenceIt(subject, writer);
}
if (WSDLBoundFaultContainer.class.isInstance(concreteSubject)) { // is it our class?
WSDLBoundFaultContainer faultContainer = (WSDLBoundFaultContainer) concreteSubject;
WSDLBoundFault fault = faultContainer.getBoundFault();
WSDLBoundOperation operation = faultContainer.getBoundOperation();
if (exceptionName.equals(fault.getName()) &&
operation.getName().getLocalPart().equals(method.getOperationName())) {
writePolicyOrReferenceIt(subject, writer);
}
}
else if (WsdlBindingSubject.class.isInstance(concreteSubject)) {
WsdlBindingSubject wsdlSubject = (WsdlBindingSubject) concreteSubject;
if ((wsdlSubject.getMessageType() == WsdlBindingSubject.WsdlMessageType.FAULT) &&
exception.getOwner().getTargetNamespace().equals(wsdlSubject.getName().getNamespaceURI()) &&
exceptionName.equals(wsdlSubject.getName().getLocalPart())) {
writePolicyOrReferenceIt(subject, writer);
}
}
}
}
}
}
LOGGER.exiting();
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:36,代码来源:PolicyWSDLGeneratorExtension.java
示例15: getDefaultOutputAction
import com.sun.xml.internal.ws.api.model.JavaMethod; //导入依赖的package包/类
protected static final String getDefaultOutputAction(JavaMethod method) {
String tns = method.getOwner().getTargetNamespace();
String delim = getDelimiter(tns);
if (tns.endsWith(delim))
tns = tns.substring(0, tns.length() - 1);
//this assumes that fromjava case there won't be output name.
// if there is input name in future, then here name=outputName
//else use operation name as follows.
String name = method.getOperationName() + "Response";
return new StringBuilder(tns).append(delim).append(
method.getOwner().getPortTypeName().getLocalPart()).append(
delim).append(name).toString();
}
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:15,代码来源:W3CAddressingMetadataWSDLGeneratorExtension.java
示例16: addOperationOutputExtension
import com.sun.xml.internal.ws.api.model.JavaMethod; //导入依赖的package包/类
@Override
public void addOperationOutputExtension(TypedXmlWriter output, JavaMethod method) {
if (!enabled)
return;
Action a = method.getSEIMethod().getAnnotation(Action.class);
if (a != null && !a.output().equals("")) {
addAttribute(output, a.output());
}
}
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:11,代码来源:W3CAddressingWSDLGeneratorExtension.java
示例17: getInputAction
import com.sun.xml.internal.ws.api.model.JavaMethod; //导入依赖的package包/类
private static final String getInputAction(JavaMethod method) {
String inputaction = ((JavaMethodImpl)method).getInputAction();
if (inputaction.equals("")) {
// Calculate default action
inputaction = getDefaultInputAction(method);
}
return inputaction;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:9,代码来源:W3CAddressingMetadataWSDLGeneratorExtension.java
示例18: getDefaultInputAction
import com.sun.xml.internal.ws.api.model.JavaMethod; //导入依赖的package包/类
protected static final String getDefaultInputAction(JavaMethod method) {
String tns = method.getOwner().getTargetNamespace();
String delim = getDelimiter(tns);
if (tns.endsWith(delim))
tns = tns.substring(0, tns.length() - 1);
//this assumes that fromjava case there won't be input name.
// if there is input name in future, then here name=inputName
//else use operation name as follows.
String name = (method.getMEP().isOneWay()) ?
method.getOperationName() : method.getOperationName() + "Request";
return new StringBuilder(tns).append(delim).append(
method.getOwner().getPortTypeName().getLocalPart()).append(
delim).append(name).toString();
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:16,代码来源:W3CAddressingMetadataWSDLGeneratorExtension.java
示例19: getFaultAction
import com.sun.xml.internal.ws.api.model.JavaMethod; //导入依赖的package包/类
private static final String getFaultAction(JavaMethod method,
CheckedException ce) {
String faultaction = ((CheckedExceptionImpl)ce).getFaultAction();
if (faultaction.equals("")) {
faultaction = getDefaultFaultAction(method,ce);
}
return faultaction;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:9,代码来源:W3CAddressingMetadataWSDLGeneratorExtension.java
示例20: addBindingOperationInputExtension
import com.sun.xml.internal.ws.api.model.JavaMethod; //导入依赖的package包/类
@Override
public void addBindingOperationInputExtension(final TypedXmlWriter input, final JavaMethod method) {
LOGGER.entering();
final QName operationName = new QName(method.getOwner().getTargetNamespace(), method.getOperationName());
selectAndProcessBindingSubject(input, WSDLBoundOperation.class, ScopeType.INPUT_MESSAGE, operationName);
LOGGER.exiting();
}
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:8,代码来源:PolicyWSDLGeneratorExtension.java
注:本文中的com.sun.xml.internal.ws.api.model.JavaMethod类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论