Searched refs:Service (Results 26 - 50 of 89) sorted by relevance

1234

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/dispatch/
H A DSOAPMessageDispatch.java43 import javax.xml.ws.Service;
52 * the <code>SOAPMessage</code> class. The <code>javax.xml.ws.Service</code>
61 public SOAPMessageDispatch(QName port, Service.Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
65 public SOAPMessageDispatch(WSPortInfo portInfo, Service.Mode mode, BindingImpl binding, WSEndpointReference epr) {
H A DDispatchImpl.java57 import javax.xml.ws.Service;
58 import javax.xml.ws.Service.Mode;
81 * constructs, JAXB objects or <code>SOAPMessage</code>. The <code>javax.xml.ws.Service</code>
90 final Service.Mode mode;
98 * @param mode Service.mode associated with this Dispatch instance - Service.mode.MESSAGE or Service.mode.PAYLOAD
99 * @param owner Service that created the Dispatch
104 protected DispatchImpl(QName port, Service.Mode mode, WSServiceDelegate owner, Tube pipe, BindingImpl binding, @Nullable WSEndpointReference epr) {
114 * @param mode Service
[all...]
H A DJAXBDispatch.java47 import javax.xml.ws.Service;
53 * JAXB objects. The <code>javax.xml.ws.Service</code>
65 public JAXBDispatch(QName port, JAXBContext jc, Service.Mode mode, WSServiceDelegate service, Tube pipe, BindingImpl binding, WSEndpointReference epr) {
70 public JAXBDispatch(WSPortInfo portInfo, JAXBContext jc, Service.Mode mode, BindingImpl binding, WSEndpointReference epr) {
/openjdk7/jdk/test/java/security/Provider/
H A DSupportsParameter.java27 * @summary verify that Provider.Service.supportsParameter() works
32 import java.security.Provider.Service;
51 Service s;
98 private static void checkSupports(Service s, Key key, boolean r) throws Exception {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/document/
H A DDefinitions.java49 public Service service();
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/soap/
H A DAddressingFeature.java31 import javax.xml.ws.Service;
40 * instances on the server side. This feature cannot be used for {@link Service}
H A DMTOMFeature.java32 import javax.xml.ws.Service;
40 * instances on the server side. This feature cannot be used for {@link Service}
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/spi/
H A DHttpServerProvider.java34 import sun.misc.Service;
40 * Service provider class for HttpServer.
100 Iterator i = Service.providers(HttpServerProvider.class,
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/annotation/
H A DModelBuilder.java33 import com.sun.tools.internal.ws.processor.model.Service;
46 public void setService(Service service);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/document/
H A DWSDLDocumentVisitor.java65 public void preVisit(Service service) throws Exception;
66 public void postVisit(Service service) throws Exception;
H A DWSDLDocumentVisitorBase.java95 public void preVisit(Service service) throws Exception {
97 public void postVisit(Service service) throws Exception {
H A DDefinitions.java94 public void add(Service s) {
99 public void addServiceOveride(Service s) {
124 public Iterator<Service> services() {
206 ((Service) iter.next()).accept(visitor);
225 private List<Service> _services;
H A DService.java44 public class Service extends GlobalEntity implements TWSDLExtensible { class in inherits:GlobalEntity,TWSDLExtensible
46 public Service(Defining defining, Locator locator, ErrorReceiver errReceiver) { method in class:Service
/openjdk7/jdk/src/share/classes/java/security/
H A DSignature.java37 import java.security.Provider.Service;
216 List<Service> list;
222 Iterator<Service> t = list.iterator();
230 Service s = t.next();
277 private static boolean isSpi(Service s) {
408 Service s = p.getService("Signature", RSA_SIGNATURE);
913 private Service firstService;
917 private Iterator<Service> serviceIterator;
927 Delegate(Service service,
928 Iterator<Service> iterato
[all...]
H A DKeyFactory.java30 import java.security.Provider.Service;
115 private Iterator<Service> serviceIterator;
134 List<Service> list = GetInstance.getServices("KeyFactory", algorithm);
295 Service s = serviceIterator.next();
/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/
H A DTransformService.java34 import java.security.Provider.Service;
46 * A Service Provider Interface for transform and canonicalization algorithms.
76 * <a href="../../../../../technotes/guides/security/xmldsig/overview.html#Service Provider">
77 * Service Providers</a> section of the API overview for a list of standard
162 Service s = (Service)t.next();
210 Service s = GetInstance.getService
263 Service s = GetInstance.getService
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DJceSecurity.java34 import java.security.Provider.Service;
97 Service s = GetInstance.getService(type, algorithm, provider);
109 Service s = GetInstance.getService(type, algorithm, provider);
124 Service s = (Service)t.next();
H A DSecretKeyFactory.java31 import java.security.Provider.Service;
293 Service s = (Service)serviceIterator.next();
H A DCipher.java36 import java.security.Provider.Service;
228 private Service firstService;
275 private Cipher(CipherSpi firstSpi, Service firstService,
365 int supportsModePadding(Service s) {
377 int supportsMode(Service s) {
380 int supportsPadding(Service s) {
384 private static int supports(Service s, String attrName, String value) {
440 private static Transform getTransform(Service s, List transforms) {
498 Service s = (Service)
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/
H A DExtendedModelVisitor.java42 for (Service service : model.getServices()) {
122 protected void preVisit(Service service) throws Exception {}
123 protected void postVisit(Service service) throws Exception {}
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/client/
H A DServiceInterceptorFactory.java33 import javax.xml.ws.Service;
90 * {@link Service} created in this thread, until it gets unregistered.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/
H A DPipelineAssembler.java39 import javax.xml.ws.Service;
73 * a {@link Service}, JAX-WS runtime internally uses this method
/openjdk7/jdk/src/share/classes/sun/misc/
H A DService.java47 * in the service itself. Service providers may be installed in an
109 * Iterator ps = Service.providers(CharCodec.class);
128 public final class Service { class
132 private Service() { } method in class:Service
367 * return Service.providers(service, cl);
389 return Service.providers(service, cl);
400 * return Service.providers(service, extClassLoader);
431 return Service.providers(service, prev);
/openjdk7/jaxws/src/share/jaxws_classes/org/relaxng/datatype/helpers/
H A DDatatypeLibraryLoader.java57 private final Service service = new Service(DatatypeLibraryFactory.class);
71 private static class Service { class in class:DatatypeLibraryLoader
163 public Service(Class cls) { method in class:DatatypeLibraryLoader.Service
/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.
87 * <p><code>Service</code> acts as a factory of the following:
100 * <p>Handler chains for all the objects created by a <code>Service</code>
133 private final Class<? extends Service> serviceClass;
152 * The WSDL service that this {@link Service} object represents.
154 * This field is null iff no WSDL is given to {@link Service}.
167 public WSServiceDelegate(URL wsdlDocumentLocation, QName serviceName, Class<? extends Service> serviceClass) {
175 * Either {@link Service}.class or other generated service-derived classes.
177 public WSServiceDelegate(@Nullable Source wsdl, @NotNull QName serviceName, @NotNull final Class<? extends Service> serviceClass) {
178 //we cant create a Service withou
[all...]

Completed in 69 milliseconds

1234