Searched defs:service (Results 1 - 25 of 73) sorted by relevance

123

/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DServiceName.java51 public ServiceName (String service, String instance, String realm) argument
54 super(service, instance, realm, PrincipalName.KRB_NT_SRV_INST);
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DCredentialsUtil.java49 * protocol. It is used by ../Credentials.java for service ticket
57 * Acquires credentials for a specified service using initial credential. Wh
58 en the service has a different realm
62 edential to request service credential
65 * @param service the name of service principal using format components@real
73 String service, Credentials ccreds)
75 ServiceName sname = new ServiceName(service);
269 /* We have the right tgt. Let's get the service creds */
277 System.out.println(">>> Credentials acquireServiceCreds: obtaining service cred
72 acquireServiceCreds( String service, Credentials ccreds) argument
308 serviceCreds( ServiceName service, Credentials ccreds) argument
[all...]
/openjdk7/jdk/src/share/sample/nio/server/
H A DRequestServicer.java72 private void service() throws IOException { method in class:RequestServicer
116 service();
/openjdk7/jdk/src/share/classes/java/beans/beancontext/
H A DBeanContextServiceProvider.java37 * provide an instance of a "service", based upon a reference to a Java
38 * Class object that represents that service.
41 * If such a service has been registered with the context, or one of its
43 * to satisfy a service request, then the BeanContextServiceProvider associated with
44 * the service is asked to provide an instance of that service.
57 * service from this <code>BeanContextServiceProvider</code>.
61 * <code>BeanContextServiceProvider</code> to distinguish service
64 * @param requestor The object requesting the service
66 * @param serviceClass The service requeste
88 releaseService(BeanContextServices bcs, Object requestor, Object service) argument
[all...]
H A DBeanContextServiceRevokedEvent.java36 * identify the service being revoked.
45 * from which this service is being revoked
46 * @param sc the service that is being revoked
59 * this service is being revoked
66 * Gets the service class that is the subject of this notification
68 * service that is being revoked
74 * the service being revoked is of a particular class.
75 * @param service the service of interest (should be non-null)
76 * @return <code>true</code> if the service bein
79 isServiceClass(Class service) argument
[all...]
H A DBeanContextServices.java48 * Adds a service to this BeanContext.
50 * to register a particular service with this context.
51 * If the service has not previously been added, the
53 * the service with the <code>BeanContextServiceProvider</code> and
57 * the addition of the service was successful.
58 * If the given service has already been added, this method
60 * @param serviceClass the service to add
62 * associated with the service
68 * a currently registered service from this context
70 * the service, th
126 releaseService(BeanContextChild child, Object requestor, Object service) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/client/
H A DServiceInterceptorFactory.java60 public abstract ServiceInterceptor create(@NotNull WSService service); argument
65 public static @NotNull ServiceInterceptor load(@NotNull WSService service, @Nullable ClassLoader cl) { argument
68 // first service look-up
70 l.add(f.create(service));
74 l.add(f.create(service));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/jaxws/
H A DBuilderHandlerEndpointScope.java44 private final QName service; field in class:BuilderHandlerEndpointScope
48 BuilderHandlerEndpointScope(Collection<String> policyURIs, Map<String,PolicySourceModel> policyStore, Object policySubject, QName service, QName port) { argument
51 this.service = service;
56 final PolicyMapKey mapKey = PolicyMap.createWsdlEndpointScopeKey(service, port);
64 return (new StringBuffer(service.toString())).append(":").append(port.toString()).toString();
H A DBuilderHandlerOperationScope.java44 private final QName service; field in class:BuilderHandlerOperationScope
53 , QName service, QName port, QName operation) {
56 this.service = service;
62 final PolicyMapKey mapKey = PolicyMap.createWsdlOperationScopeKey(service, port, operation);
49 BuilderHandlerOperationScope( Collection<String> policyURIs , Map<String,PolicySourceModel> policyStore , Object policySubject , QName service, QName port, QName operation) argument
H A DBuilderHandlerServiceScope.java44 private final QName service; field in class:BuilderHandlerServiceScope
50 Collection<String> policyURIs, Map<String,PolicySourceModel> policyStore, Object policySubject, QName service) {
53 this.service = service;
57 final PolicyMapKey mapKey = PolicyMap.createWsdlServiceScopeKey(service);
65 return service.toString();
49 BuilderHandlerServiceScope( Collection<String> policyURIs, Map<String,PolicySourceModel> policyStore, Object policySubject, QName service) argument
H A DPolicyUtil.java72 * Adds the dynamically discovered implementations for the given service class
75 * @param <T> The type of the service class.
77 * @param service The service interface.
79 public static <T> void addServiceProviders(Collection<T> providers, Class<T> service) { argument
80 final Iterator<T> foundProviders = ServiceFinder.find(service).iterator();
97 for (WSDLService service : model.getServices().values()) {
98 for (WSDLPort port : service.getPorts()) {
99 final Collection<WebServiceFeature> features = getPortScopedFeatures(policyMap, service.getName(), port.getName());
113 * @param policyMap The service policie
[all...]
/openjdk7/jdk/test/java/beans/beancontext/
H A DTest4328406.java69 service) {
102 public void releaseService(BeanContextServices bcs, Object requestor, Object service) { argument
68 releaseService(BeanContextServices bcs, Object requestor, Object service) argument
/openjdk7/jdk/src/share/classes/sun/print/
H A DServiceNotifier.java39 * management to this class. The ServiceNotifier calls back to the service
45 private PrintService service; field in class:ServiceNotifier
50 ServiceNotifier(PrintService service) { argument
51 super(service.getName() + " notifier");
52 this.service = service;
88 /* If a service submits a job it may call this method which may prompt
123 if (service instanceof AttributeUpdater) {
125 ((AttributeUpdater)service).getUpdatedAttributes();
127 psa = service
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/
H A DModelVisitor.java34 public void visit(Service service) throws Exception; argument
H A DExtendedModelVisitor.java42 for (Service service : model.getServices()) {
43 preVisit(service);
44 for (Port port : service.getPorts()) {
110 postVisit(service);
122 protected void preVisit(Service service) throws Exception {} argument
123 protected void postVisit(Service service) throws Exception {} argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/dispatch/
H A DDataSourceDispatch.java52 public DataSourceDispatch(QName port, Service.Mode mode, WSServiceDelegate service, Tube pipe, BindingImpl binding, WSEndpointReference epr) { argument
53 super(port, mode, service, pipe, binding, epr );
H A DMessageDispatch.java49 public MessageDispatch(QName port, WSServiceDelegate service, Tube pipe, BindingImpl binding, WSEndpointReference epr) { argument
50 super(port, Mode.MESSAGE, service, pipe, binding, epr);
H A DJAXBDispatch.java52 * for the dynamic invocation of a service endpoint operation using
65 public JAXBDispatch(QName port, JAXBContext jc, Service.Mode mode, WSServiceDelegate service, Tube pipe, BindingImpl binding, WSEndpointReference epr) { argument
66 super(port, mode, service, pipe, binding, epr);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/document/
H A DDefinitions.java49 public Service service(); method in interface:Definitions
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/processing/
H A DServiceProxy.java37 * Utility class to determine if a service can be found on the
58 private static void fail(Class<?> service, String msg) argument
60 throw new ServiceConfigurationError(service.getName() + ": " + msg);
63 private static void fail(Class<?> service, URL u, int line, String msg) argument
65 fail(service, u + ":" + line + ": " + msg);
71 * @param service
72 * The service class for which providers are being sought;
78 * @return true if the name of a service is found
84 private static boolean parse(Class<?> service, URL u) throws ServiceConfigurationError { argument
99 fail(service,
134 hasService(Class<?> service, URL[] urls) argument
[all...]
/openjdk7/jdk/test/javax/print/attribute/autosense/
H A DPrintAutoSenseData.java40 private PrintService[] service = PrintServiceLookup.lookupPrintServices(flavor, null); field in class:PrintAutoSenseData
45 if (service.length == 0)
47 System.out.println("No print service available...");
51 System.out.println("selected PrintService: " + this.service[0]);
52 if (service[0].isDocFlavorSupported(flavor)) {
59 DocPrintJob job = service[0].createPrintJob();
67 DocPrintJob job = service[0].createPrintJob();
/openjdk7/jdk/src/share/classes/javax/print/
H A DPrintServiceLookup.java43 * Typically implementations of this service class are located
50 * The instance methods are implemented by a service provider in a subclass
61 * This check is made on a per lookup service basis to allow flexibility in
113 * @param attributes attributes that the print service must support.
131 * <P> This method is useful to help locate a service that can print
135 * but the lookup service may be able to do this more efficiently.
141 * @param attributes attributes that the print service must
158 * Locates the default print service for this environment.
161 * chosen service is not precisely defined, but a
162 * platform native service, rathe
247 registerService(PrintService service) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/document/
H A DWSDLDocumentVisitor.java65 public void preVisit(Service service) throws Exception; argument
66 public void postVisit(Service service) throws Exception; argument
H A DWSDLDocumentVisitorBase.java95 public void preVisit(Service service) throws Exception { argument
97 public void postVisit(Service service) throws Exception { argument
/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);

Completed in 60 milliseconds

123