Searched refs:service (Results 76 - 100 of 103) sorted by relevance

12345

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/parser/
H A DWSDLParserExtensionFacade.java69 public boolean serviceElements(WSDLService service, XMLStreamReader reader) { argument
71 if(e.serviceElements(service,reader))
78 public void serviceAttributes(WSDLService service, XMLStreamReader reader) { argument
80 e.serviceAttributes(service,reader);
H A DW3CAddressingWSDLParserExtension.java143 for (WSDLService service : model.getServices().values()) {
144 for (WSDLPort wp : service.getPorts()) {
H A DRuntimeWSDLParser.java323 //get the targetNamespace of the service
357 WSDLServiceImpl service = new WSDLServiceImpl(reader,wsdlDoc,new QName(targetNamespace, serviceName));
358 extensionFacade.serviceAttributes(service, reader);
362 parsePort(reader, service);
367 extensionFacade.serviceElements(service, reader);
370 wsdlDoc.addService(service);
373 private void parsePort(XMLStreamReader reader, WSDLServiceImpl service) { argument
378 QName portQName = new QName(service.getName().getNamespaceURI(), portName);
379 WSDLPortImpl port = new WSDLPortImpl(reader,service, portQName, bindingName);
425 service
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/gsskerb/
H A DGssKrb5Client.java100 String service = protocol + "@" + serverName;
101 logger.log(Level.FINE, "KRB5CLNT01:Requesting service name: {0}",
102 service);
107 // Create the name for the requested service entity for Krb5 mech
108 GSSName acceptorName = mgr.createName(service,
H A DGssKrb5Server.java85 String service = protocol + "@" + serverName;
87 logger.log(Level.FINE, "KRB5SRV01:Using service name: {0}", service);
92 // Create the name for the requested service entity for Krb5 mech
93 GSSName serviceName = mgr.createName(service,
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DRenderingEngine.java142 RenderingEngine service = null;
145 service = re;
150 return service;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/annotation/
H A DWebServiceAP.java80 private Service service; field in class:WebServiceAP
277 public void setService(Service service) { argument
278 this.service = service;
283 service.addPort(port);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A DWSServiceDelegate.java85 * <code>Service</code> objects provide the client view of a Web service.
89 * <li>Proxies for a target service endpoint.
95 * <p>The ports available on a service can be enumerated using the
97 * service endpoint interface to the unary <code>getPort</code> method
103 * <p>An <code>Executor</code> may be set on the service in order
107 * registering it with the service.
136 * Name of the service for which this {@link WSServiceDelegate} is created for.
147 // created from this service. But once the proxy is created, then changing
152 * The WSDL service that this {@link Service} object represents.
155 * This fiels can be be null if the service i
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/util/
H A DClassNameCollector.java80 protected void preVisit(Service service) throws Exception { argument
82 ((JavaInterface)service.getJavaInterface()).getName());
86 // ((JavaInterface)service.getJavaInterface()).getImpl());
/openjdk7/jaxws/src/share/jaxws_classes/org/relaxng/datatype/helpers/
H A DDatatypeLibraryLoader.java57 private final Service service = new Service(DatatypeLibraryFactory.class); field in class:DatatypeLibraryLoader
60 for (Enumeration e = service.getProviders();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/parser/
H A DWSDLParser.java310 Service service = parseService(context, definitions, e2);
311 definitions.add(service);
971 Service service = new Service(definitions, forest.locatorTable.getStartLocation(e), errReceiver);
973 service.setName(name);
987 if(service.getDocumentation() == null)
988 service.setDocumentation(getDocumentationFor(e2));
991 service.add(port);
995 if (!handleExtension(context, service, e2)) {
1002 context.fireDoneParsingEntity(WSDLConstants.QNAME_SERVICE, service);
1003 return service;
[all...]
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPrinterJob.java579 * Throws <code>PrinterException</code> if the specified service
582 * @param a print service which supports 2D printing.
584 * @throws PrinterException if the specified service does not support
587 public void setPrintService(PrintService service) argument
589 super.setPrintService(service);
590 if (service instanceof StreamPrintService) {
595 setNativePrintService(service.getName());
598 /* associates this job with the specified native service */
1525 // getPrintService will get current print service or default if none
1526 PrintService service
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/spi/
H A DProviderImpl.java156 WSService service = new WSServiceDelegate(msepr.toWSDLSource(), msepr.serviceName.name, Service.class);
162 WSService service;
164 service = new WSServiceDelegate(metadata.getWsdlSource(), metadata.getServiceName(), Service.class);
167 return service.getPort(wsepr, clazz, webServiceFeatures);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/generator/
H A DSeiGenerator.java448 public void visit(Service service) throws Exception { argument
455 for(Port p:service.getPorts()){
456 visitPort(service, p);
460 private void visitPort(Service service, Port port) { argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DPseudoSchemaBuilder.java135 private void build(Service service) { argument
136 for( Iterator<Port> itr=service.ports(); itr.hasNext(); )
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DStubs.java91 * <h3>{@link WSService} service</h3>
355 * @param service
370 public <T> T createPortProxy( WSService service, WSBinding binding, SEIModel model, argument
373 SEIStub ps = new SEIStub((WSServiceDelegate)service,(BindingImpl)binding, (SOAPSEIModel)model,next, epr);
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DCredentials.java43 * This class encapsulates the concept of a Kerberos service
129 * Acquires a service ticket for the specified service
130 * principal. If the service ticket is not already available, it
134 public Credentials(Credentials tgt, PrincipalName service)
231 * Checks if the service ticket returned by the KDC has the OK-AS-DELEGATE
244 * the service ticket is cached it still remembers the cross-realm
429 * Acquires credentials for a specified service using initial credential.
430 * When the service has a different realm
434 * cross-realm credential to request service credentia
446 acquireServiceCreds(String service, Credentials ccreds) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/
H A DEndpointReferenceUtil.java136 //Write service and Port info
262 String service = elm.getTextContent();
263 String prefix = XmlUtil.getPrefix(service);
264 String name = XmlUtil.getLocalPart(service);
266 //if there is no service name then its not a valid EPR but lets continue as its optional anyway
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dsolaris_sparc.s31 !! The reader might be tempted to move this service to .il.
/openjdk7/jdk/src/share/classes/java/security/
H A DSignature.java98 * the superclass are intended for cryptographic service providers who wish to
911 // next service to try in provider selection
927 Delegate(Service service, argument
930 this.firstService = service;
H A DProvider.java58 * cryptographic service provider, works and is installed. However,
60 * service in Java that uses a pluggable architecture with a choice
68 * <p>The service type <code>Provider</code> is reserved for use by the
541 * service objects.
660 * Get the service describing this Provider's implementation of the
665 * the service added via {@link #putService putService()} is returned.
667 * @param type the type of {@link Service service} requested
670 * alias) of the service requested (for example, <code>SHA-1</code>)
672 * @return the service describing this Provider's matching service
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DWsgenTool.java293 ReportOutput.writeQName(rtModel.getServiceQName(), report.service());
323 QualifiedName service(); method in interface:WsgenTool.ReportOutput.Report
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/
H A DWSDLGenerator.java951 Service service = serviceDefinitions.service().name(serviceQName.getLocalPart());
952 extension.addServiceExtension(service);
953 Port port = service.port().name(portQName.getLocalPart());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/jaxws/
H A DPolicyWSDLGeneratorExtension.java184 public void addServiceExtension(final TypedXmlWriter service) { argument
187 selectAndProcessSubject(service, WSDLService.class, ScopeType.SERVICE, serviceName);
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DSunPKCS11.java424 private P11Service service(Token token, int mechanism) { method in class:SunPKCS11.Descriptor
876 Service s = d.service(token, mechanism);

Completed in 79 milliseconds

12345