Searched defs:serviceName (Results 1 - 25 of 38) sorted by relevance

12

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/
H A DEPRSDDocumentFilter.java64 private @Nullable WSEndpointImpl<?> getEndpoint(String serviceName, String portName) { argument
65 if (serviceName == null || portName == null)
67 if (endpoint.getServiceName().getLocalPart().equals(serviceName) && endpoint.getPortName().getLocalPart().equals(portName))
82 if (wse.getServiceName().getLocalPart().equals(serviceName) && wse.getPortName().getLocalPart().equals(portName)) {
102 private String serviceName = null; //non null when inside wsdl:service scope
142 WSEndpoint endpoint = getEndpoint(serviceName,portName);
144 //if (service.getLocalPart().equals(serviceName) && port.getLocalPart().equals(portName)) {
213 if (!portHasEPR && getEndpoint(serviceName,portName) != null) {
221 writeEPRExtensions(getEndpoint(serviceName, portName).getEndpointReferenceExtensions());
228 if (portHasEPR && getEndpoint(serviceName,portNam
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/server/
H A DPortAddressResolver.java52 * @param serviceName
61 public abstract @Nullable String getAddressFor(@NotNull QName serviceName, @NotNull String portName); argument
66 * @param serviceName
77 public @Nullable String getAddressFor(@NotNull QName serviceName, @NotNull String portName, String currentAddress) { argument
78 return getAddressFor(serviceName, portName);
H A DWSEndpoint.java124 * Gets the application endpoint's serviceName. It could be got from DD or annotations
442 * @param serviceName
489 @Nullable QName serviceName,
500 implType,processHandlerAnnotation, invoker,serviceName,portName,container,binding,primaryWsdl,metadata,resolver,isTransportSynchronous);
522 @Nullable QName serviceName,
529 return create(implType,processHandlerAnnotation,invoker,serviceName,portName,container,binding,primaryWsdl,metadata,resolver,false);
546 @Nullable QName serviceName,
554 implType,processHandlerAnnotation,invoker,serviceName,portName,container,binding,primaryWsdl,metadata,
568 public static @NotNull QName getDefaultPortName(@NotNull QName serviceName, Class endpointClass){ argument
569 return EndpointFactory.getDefaultPortName(serviceName, endpointClas
485 create( @otNull Class<T> implType, boolean processHandlerAnnotation, @Nullable Invoker invoker, @Nullable QName serviceName, @Nullable QName portName, @Nullable Container container, @Nullable WSBinding binding, @Nullable SDDocumentSource primaryWsdl, @Nullable Collection<? extends SDDocumentSource> metadata, @Nullable EntityResolver resolver, boolean isTransportSynchronous) argument
518 create( @otNull Class<T> implType, boolean processHandlerAnnotation, @Nullable Invoker invoker, @Nullable QName serviceName, @Nullable QName portName, @Nullable Container container, @Nullable WSBinding binding, @Nullable SDDocumentSource primaryWsdl, @Nullable Collection<? extends SDDocumentSource> metadata, @Nullable EntityResolver resolver) argument
542 create( @otNull Class<T> implType, boolean processHandlerAnnotation, @Nullable Invoker invoker, @Nullable QName serviceName, @Nullable QName portName, @Nullable Container container, @Nullable WSBinding binding, @Nullable SDDocumentSource primaryWsdl, @Nullable Collection<? extends SDDocumentSource> metadata, @Nullable URL catalogUrl) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A DMonitorRootClient.java76 private QName serviceName() { return stub.owner.getServiceName(); } method in class:MonitorRootClient
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DPortInfoImpl.java56 private QName serviceName; field in class:PortInfoImpl
64 * @param serviceName The QName of the service.
66 public PortInfoImpl(BindingID bindingId, QName portName, QName serviceName) { argument
73 if (serviceName == null) {
74 throw new RuntimeException("serviceName cannot be null");
78 this.serviceName = serviceName;
90 return serviceName;
108 serviceName.equals(info.getServiceName())) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/
H A DPolicyMapUtil.java81 * @param serviceName The name of the current WSDL service
86 public static void insertPolicies(final PolicyMap policyMap, final Collection<PolicySubject> policySubjects, QName serviceName, QName portName) argument
88 LOGGER.entering(policyMap, policySubjects, serviceName, portName);
104 final PolicyMapKeyConverter converter = new PolicyMapKeyConverter(serviceName, portName);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/subject/
H A DPolicyMapKeyConverter.java43 private final QName serviceName; field in class:PolicyMapKeyConverter
46 public PolicyMapKeyConverter(QName serviceName, QName portName) { argument
47 this.serviceName = serviceName;
56 key = PolicyMap.createWsdlEndpointScopeKey(this.serviceName, this.portName);
59 key = PolicyMap.createWsdlOperationScopeKey(this.serviceName, this.portName, subject.getName());
63 key = PolicyMap.createWsdlFaultMessageScopeKey(this.serviceName, this.portName,
67 key = PolicyMap.createWsdlMessageScopeKey(this.serviceName, this.portName, subject.getParent().getName());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/jaxws/
H A DPolicyUtil.java114 * @param serviceName The service name
118 public static Collection<WebServiceFeature> getPortScopedFeatures(PolicyMap policyMap, QName serviceName, QName portName) { argument
119 LOGGER.entering(policyMap, serviceName, portName);
122 final PolicyMapKey key = PolicyMap.createWsdlEndpointScopeKey(serviceName, portName);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DHandlerAnnotationProcessor.java90 Class<?> clazz, QName serviceName, QName portName, WSBinding binding) {
113 serviceName, portName, binding);
89 buildHandlerInfo(@otNull Class<?> clazz, QName serviceName, QName portName, WSBinding binding) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/model/wsdl/
H A DWSDLModel.java71 * @param serviceName service QName
76 WSDLBoundPortType getBinding(@NotNull QName serviceName, @NotNull QName portName); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/developer/
H A DMemberSubmissionEndpointReference.java95 this.serviceName = epr.serviceName;
155 public ServiceNameType serviceName; field in class:MemberSubmissionEndpointReference
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DMonitorRootService.java127 public @NotNull QName serviceName() { method in class:MonitorRootService
H A DWSDLGenResolver.java66 private final QName serviceName; field in class:WSDLGenResolver
69 public WSDLGenResolver(@NotNull List<SDDocumentImpl> docs,QName serviceName,QName portTypeName) { argument
71 this.serviceName = serviceName;
188 SDDocumentImpl docImpl = SDDocumentImpl.create(doc,serviceName,portTypeName);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/
H A DHttpAdapterList.java94 public String getAddressFor(@NotNull QName serviceName, @NotNull String portName) {
95 String urlPattern = addressMap.get(new PortInfo(serviceName,portName));
111 private final QName serviceName; field in class:HttpAdapterList.PortInfo
114 PortInfo(@NotNull QName serviceName, @NotNull String portName) { argument
115 this.serviceName = serviceName;
123 return this.serviceName.equals(that.serviceName) && this.portName.equals(that.portName);
130 return serviceName.hashCode()+portName.hashCode();
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DKrb5NameElement.java161 String serviceName = gssNameStr.substring(0, separatorPos);
163 retVal = new String[] { serviceName, hostName};
172 private static String getHostBasedInstance(String serviceName, argument
175 StringBuffer temp = new StringBuffer(serviceName);
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/wsaddressing/
H A DW3CEndpointReferenceBuilder.java56 * property MAY be <code>null</code> but then the <code>serviceName</code>
61 * to a valid WSDL document and the <code>serviceName</code> and
120 * Sets the <code>serviceName</code> as the
127 * @param serviceName The service name of the endpoint to be targeted
134 * the <code>serviceName</code> as <code>wsam:ServiceName</code>
138 public W3CEndpointReferenceBuilder serviceName(QName serviceName) { argument
139 this.serviceName = serviceName;
147 * after the {@link #serviceName} metho
351 private QName serviceName; field in class:W3CEndpointReferenceBuilder
[all...]
/openjdk7/jdk/src/share/classes/javax/security/sasl/
H A DSasl.java562 private static Set<Object> getFactories(String serviceName) { argument
565 if ((serviceName == null) || (serviceName.length() == 0) ||
566 (serviceName.endsWith("."))) {
581 if (currentKey.startsWith(serviceName)) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DWsgenOptions.java48 public QName serviceName; field in class:WsgenOptions
121 serviceName = QName.valueOf(requireArgument(SERVICENAME_OPTION, args, ++i));
122 if (serviceName.getNamespaceURI() == null || serviceName.getNamespaceURI().length() == 0) {
125 if (serviceName.getLocalPart() == null || serviceName.getLocalPart().length() == 0) {
266 if (serviceName != null) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/
H A DWSService.java111 * @param serviceName QName for the service
115 public static WSService create( URL wsdlDocumentLocation, QName serviceName) { argument
116 return new WSServiceDelegate(wsdlDocumentLocation,serviceName,Service.class);
122 * @param serviceName QName for the service
126 public static WSService create(QName serviceName) { argument
127 return create(null,serviceName);
178 * @param serviceName
185 public static Service create( URL wsdlDocumentLocation, QName serviceName, InitParams properties) { argument
190 Service svc = Service.create(wsdlDocumentLocation, serviceName);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/config/management/policy/
H A DManagementAssertion.java85 * @param serviceName The WSDL service name. May not be null.
92 final PolicyMap policyMap, QName serviceName, QName portName, Class<T> type)
97 final PolicyMapKey key = PolicyMap.createWsdlEndpointScopeKey(serviceName, portName);
91 getAssertion(final QName name, final PolicyMap policyMap, QName serviceName, QName portName, Class<T> type) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/spi/
H A DProviderImpl.java95 public ServiceDelegate createServiceDelegate( URL wsdlDocumentLocation, QName serviceName, Class serviceClass) { argument
96 return new WSServiceDelegate(wsdlDocumentLocation, serviceName, serviceClass);
99 public ServiceDelegate createServiceDelegate( URL wsdlDocumentLocation, QName serviceName, Class serviceClass, argument
104 return new WSServiceDelegate(wsdlDocumentLocation, serviceName, serviceClass);
156 WSService service = new WSServiceDelegate(msepr.toWSDLSource(), msepr.serviceName.name, Service.class);
170 public W3CEndpointReference createW3CEndpointReference(String address, QName serviceName, QName portName, List<Element> metadata, String wsdlDocumentLocation, List<Element> referenceParameters) { argument
171 return createW3CEndpointReference(address, null, serviceName, portName, metadata, wsdlDocumentLocation, referenceParameters, null, null);
174 public W3CEndpointReference createW3CEndpointReference(String address, QName interfaceName, QName serviceName, QName portName, argument
179 if (serviceName == null || portName == null) {
182 //check if it is run in a Java EE Container and if so, get address using serviceName an
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/
H A DWSDLPatcher.java63 private QName serviceName; field in class:WSDLPatcher
117 logger.fine("Service:"+serviceName+ " port:"+portName
154 serviceName = new QName(targetNamespace, value);
162 if (serviceName != null && portName != null) {
177 serviceName = null;
188 logger.fine("Fixing EPR Address for service:"+serviceName+ " port:"+portName
230 ? null : portAddressResolver.getAddressFor(serviceName, portName.getLocalPart(), portAddress);
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/
H A DService.java76 protected Service(java.net.URL wsdlDocumentLocation, QName serviceName) { argument
78 serviceName,
82 protected Service(java.net.URL wsdlDocumentLocation, QName serviceName, WebServiceFeature ... features) { argument
84 serviceName,
286 * not match the <code>serviceName</code> of this
444 * not match the <code>serviceName</code> or <code>portName</code>
576 * not match the <code>serviceName</code> or <code>portName</code>
700 * @param serviceName <code>QName</code> for the service
706 QName serviceName) {
707 return new Service(wsdlDocumentLocation, serviceName);
704 create( java.net.URL wsdlDocumentLocation, QName serviceName) argument
727 create( java.net.URL wsdlDocumentLocation, QName serviceName, WebServiceFeature ... features) argument
740 create(QName serviceName) argument
757 create(QName serviceName, WebServiceFeature ... features) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/spi/
H A DProvider.java175 * @param serviceName The qualified name of the service.
182 QName serviceName, Class<? extends Service> serviceClass);
189 * @param serviceName The qualified name of the service.
201 QName serviceName, Class<? extends Service> serviceClass, WebServiceFeature ... features) {
278 * <code>serviceName</code> metadata.
325 * identified by the <code>serviceName</code> and
327 * <code>null</code> and the <code>serviceName</code> and
333 * @param serviceName Qualified name of the service in the WSDL.
344 * <code>serviceName</code>, <code>portName</code>,
351 * <li>If the <code>address</code>, <code>serviceName</cod
180 createServiceDelegate( java.net.URL wsdlDocumentLocation, QName serviceName, Class<? extends Service> serviceClass) argument
199 createServiceDelegate( java.net.URL wsdlDocumentLocation, QName serviceName, Class<? extends Service> serviceClass, WebServiceFeature ... features) argument
371 createW3CEndpointReference(String address, QName serviceName, QName portName, List<Element> metadata, String wsdlDocumentLocation, List<Element> referenceParameters) argument
445 createW3CEndpointReference(String address, QName interfaceName, QName serviceName, QName portName, List<Element> metadata, String wsdlDocumentLocation, List<Element> referenceParameters, List<Element> elements, Map<QName, String> attributes) argument
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DSecurity.java873 String serviceName = filterComponents[0];
877 return getProvidersNotUsingCache(serviceName, algName, attrName,
882 String serviceName,
889 if (isCriterionSatisfied(allProviders[i], serviceName,
903 String serviceName,
907 String key = serviceName + '.' + algName;
920 serviceName + "." +
924 key = serviceName + "." + standardName;
1010 String serviceName = filterKey.substring(0, algIndex);
1049 result[0] = serviceName;
881 getProvidersNotUsingCache( String serviceName, String algName, String attrName, String filterValue, Provider[] allProviders) argument
902 isCriterionSatisfied(Provider prov, String serviceName, String algName, String attrName, String filterValue) argument
1077 getAlgorithms(String serviceName) argument
[all...]

Completed in 5024 milliseconds

12