Searched refs:Service (Results 1 - 25 of 89) sorted by relevance

1234

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/
H A DModel.java35 * The model is used to represent the entire Web Service. The JAX-WS ProcessorActions can process
67 public void addService(Service service) {
75 public Service getServiceByName(QName name) {
79 return (Service)servicesByName.get(name);
83 public List<Service> getServices() {
88 public void setServices(List<Service> l) {
95 for (Service service : services) {
153 private List<Service> services = new ArrayList<Service>();
154 private Map<QName, Service> servicesByNam
[all...]
H A DService.java38 public class Service extends ModelObject { class in inherits:ModelObject
40 public Service(Entity entity) { method in class:Service
44 public Service(QName name, JavaInterface javaInterface, Entity entity) { method in class:Service
H A DModelVisitor.java34 public void visit(Service service) throws Exception;
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/
H A DServiceMode.java47 * Service mode. <code>PAYLOAD</code> indicates that the <code>Provider</code> implementation
52 public Service.Mode value() default Service.Mode.PAYLOAD;
H A DService.java36 * <code>Service</code> objects provide the client view of a Web service.
37 * <p><code>Service</code> acts as a factory of the following:
51 * <p>Handler chains for all the objects created by a <code>Service</code>
66 public class Service { class
76 protected Service(java.net.URL wsdlDocumentLocation, QName serviceName) { method in class:Service
82 protected Service(java.net.URL wsdlDocumentLocation, QName serviceName, WebServiceFeature ... features) { method in class:Service
98 * @param serviceEndpointInterface Service endpoint interface
131 * @param serviceEndpointInterface Service endpoint interface
173 * @param serviceEndpointInterface Service endpoint interface.
201 * @param serviceEndpointInterface Service endpoin
[all...]
H A DWebServiceRef.java127 * <code>javax.xml.ws.Service</code>. This element MUST be specified
133 Class<? extends Service> value() default Service.class;
/openjdk7/jdk/src/share/classes/sun/security/jca/
H A DGetInstance.java31 import java.security.Provider.Service;
64 public static Service getService(String type, String algorithm)
67 Service s = list.getService(type, algorithm);
75 public static Service getService(String type, String algorithm,
85 Service s = p.getService(type, algorithm);
93 public static Service getService(String type, String algorithm,
98 Service s = provider.getService(type, algorithm);
112 public static List<Service> getServices(String type, String algorithm) {
123 public static List<Service> getServices(String type,
133 public static List<Service> getService
[all...]
H A DProviderList.java31 import java.security.Provider.Service;
73 public Service getService(String type, String algorithm) {
323 * Return a Service describing an implementation of the specified
328 public Service getService(String type, String name) {
331 Service s = p.getService(type, name);
348 public List<Service> getServices(String type, String algorithm) {
358 public List<Service> getServices(String type, List<String> algorithms) {
366 public List<Service> getServices(List<ServiceId> ids) {
375 private final class ServiceList extends AbstractList<Service> {
390 private Service firstServic
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/spi/
H A DServiceDelegate.java31 import javax.xml.ws.Service;
40 * Service delegates are used internally by <code>Service</code> objects
43 * Every <code>Service</code> object has its own delegate, created using
44 * the {@link javax.xml.ws.spi.Provider#createServiceDelegate} method. A <code>Service</code>
47 * @see javax.xml.ws.Service
66 * @param serviceEndpointInterface Service endpoint interface
97 * @param serviceEndpointInterface Service endpoint interface
143 * the WSDL associated with this <code>Service</code> instance or
145 * If this <code>Service</cod
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/
H A DWSService.java39 import javax.xml.ws.Service;
40 import javax.xml.ws.Service.Mode;
60 * nevertheless represents {@link Service}. We want them
82 public abstract <T> Dispatch<T> createDispatch(QName portName, WSEndpointReference wsepr, Class<T> aClass, Service.Mode mode, WebServiceFeature... features);
88 public abstract Dispatch<Object> createDispatch(QName portName, WSEndpointReference wsepr, JAXBContext jaxbContext, Service.Mode mode, WebServiceFeature... features);
104 * Create a <code>Service</code> instance.
116 return new WSServiceDelegate(wsdlDocumentLocation,serviceName,Service.class);
120 * Create a <code>Service</code> instance.
158 * To create a {@link Service}, we need to go through the API that doesn't let us
169 * Creates a {@link Service} instanc
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/document/
H A DService.java39 public interface Service interface in inherits:TypedXmlWriter,Documented
45 public com.sun.xml.internal.ws.wsdl.writer.document.Service name(String value);
/openjdk7/jdk/test/java/security/Provider/
H A DCaseSensitiveServices.java50 Service s = testService(p, "MessageDigest", "fOO");
61 private static Service testService(Provider p, String type, String alg) throws Exception {
63 Service s = p.getService(type, alg);
H A DTurkish.java34 import java.security.Provider.Service;
53 Service s1, s2;
98 private static void check(Service s1, Service s2) throws Exception {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/provider/
H A DProviderEndpointModel.java38 import javax.xml.ws.Service;
47 * Keeps the runtime information like Service.Mode and erasure of Provider class
48 * about Provider endpoint. It proccess annotations to find about Service.Mode
64 @NotNull final Service.Mode mode;
98 if (mode == Service.Mode.PAYLOAD && datatype!=Source.class) {
110 * @return Service.Mode.PAYLOAD or Service.Mode.MESSAGE
112 private static Service.Mode getServiceMode(Class<?> c) {
114 return (mode == null) ? Service.Mode.PAYLOAD : mode.value();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/document/
H A DWSDLDocument.java61 Service next = (Service) iter.next();
74 Service next = (Service) iter.next();
94 Service next = (Service) iter.next();
H A DPort.java50 public Service getService() {
54 public void setService(Service s) {
151 private Service _service;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DStubs.java52 import javax.xml.ws.Service;
53 import javax.xml.ws.Service.Mode;
93 * This object represents a {@link Service} that owns the newly created stub.
94 * For example, asynchronous method invocation will use {@link Service#getExecutor()}.
117 public static Dispatch<SOAPMessage> createSAAJDispatch(QName portName, WSService owner, WSBinding binding, Service.Mode mode, Tube next, @Nullable WSEndpointReference epr) {
130 public static Dispatch<SOAPMessage> createSAAJDispatch(WSPortInfo portInfo, WSBinding binding, Service.Mode mode, @Nullable WSEndpointReference epr) {
144 public static Dispatch<DataSource> createDataSourceDispatch(QName portName, WSService owner, WSBinding binding, Service.Mode mode, Tube next, @Nullable WSEndpointReference epr) {
157 public static Dispatch<DataSource> createDataSourceDispatch(WSPortInfo portInfo, WSBinding binding, Service.Mode mode,@Nullable WSEndpointReference epr) {
171 public static Dispatch<Source> createSourceDispatch(QName portName, WSService owner, WSBinding binding, Service.Mode mode, Tube next, @Nullable WSEndpointReference epr) {
183 public static Dispatch<Source> createSourceDispatch(WSPortInfo portInfo, WSBinding binding, Service
[all...]
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DKeyAgreement.java31 import java.security.Provider.Service;
92 private Service firstService;
115 private KeyAgreement(Service s, Iterator t, String algorithm) {
172 Service s = (Service)t.next();
299 Service s;
304 s = (Service)serviceIterator.next();
356 Service s;
361 s = (Service)serviceIterator.next();
H A DMac.java31 import java.security.Provider.Service;
94 private Service firstService;
117 private Mac(Service s, Iterator t, String algorithm) {
170 Service s = (Service)t.next();
286 Service s;
291 s = (Service)serviceIterator.next();
329 Service s;
334 s = (Service)serviceIterator.next();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/developer/
H A DWSBindingProvider.java37 import javax.xml.ws.Service;
38 import javax.xml.ws.Service.Mode;
93 * {@link JAXBContext} given to {@link Service#createDispatch(QName,JAXBContext,Mode)}
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/binding/
H A DBindingImpl.java39 import javax.xml.ws.Service;
69 protected javax.xml.ws.Service.Mode serviceMode = javax.xml.ws.Service.Mode.PAYLOAD;
87 public void setMode(@NotNull Service.Mode mode) {
88 this.serviceMode = javax.xml.ws.Service.Mode.MESSAGE;
/openjdk7/jdk/src/share/classes/java/security/
H A DKeyPairGenerator.java32 import java.security.Provider.Service;
203 List<Service> list =
205 Iterator<Service> t = list.iterator();
213 Service s = t.next();
537 private Iterator<Service> serviceIterator;
554 Delegate(Instance instance, Iterator<Service> serviceIterator,
581 Service s = serviceIterator.next();
H A DProvider.java415 // Map<ServiceKey,Service>
417 private transient Map<ServiceKey,Service> serviceMap;
419 // Map<ServiceKey,Service>
421 private transient Map<ServiceKey,Service> legacyMap;
423 // Set<Service>
425 private transient Set<Service> serviceSet;
549 legacyMap = new LinkedHashMap<ServiceKey,Service>();
564 private void removeInvalidServices(Map<ServiceKey,Service> map) {
567 Service s = (Service)entr
1033 public static class Service { class in class:Provider
1063 private Service(Provider provider) { method in class:Provider.Service
1101 public Service(Provider provider, String type, String algorithm, method in class:Provider.Service
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/
H A DInvoker.java35 import javax.xml.ws.Service;
86 if (Service.class.getClassLoader() == null)
89 System.err.println(WscompileMessages.WRAPPER_TASK_LOADING_INCORRECT_API(loadedVersion.getVersion(), Which.which(Service.class), targetVersion.getVersion()));
140 Service.class.getMethod("getPort",Class.class, WebServiceFeature[].class);
155 Service.class.getMethod("create",java.net.URL.class, QName.class, WebServiceFeature[].class);
202 if(Service.class.getClassLoader()==null) {
225 if(Service.class.getClassLoader()==null) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/dispatch/
H A DDataSourceDispatch.java42 import javax.xml.ws.Service;
52 public DataSourceDispatch(QName port, Service.Mode mode, WSServiceDelegate service, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
56 public DataSourceDispatch(WSPortInfo portInfo, Service.Mode mode,BindingImpl binding, WSEndpointReference epr) {
64 throw new IllegalArgumentException("DataSource use is not allowed in Service.Mode.PAYLOAD\n");

Completed in 82 milliseconds

1234