Searched refs:endpoints (Results 1 - 25 of 30) sorted by relevance

12

/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/
H A DWebService.java74 private HashMap<String, WebServiceEndpoint> endpoints; field in class:WebService
109 * If this returns non-null value, then it is verified that all the endpoints are of the same type.
117 * This is called after verifying that all the endpoints are of the same type, either JAX-WS or JAX-RPC
136 if (other.endpoints != null) {
137 endpoints = new HashMap<String, WebServiceEndpoint>();
138 for (WebServiceEndpoint wsep : other.endpoints.values()) {
140 endpoints.put(wsep.getEndpointName(), wsep);
143 endpoints = null;
149 endpoints = new HashMap();
222 endpoints
[all...]
H A DWebServicesDescriptor.java121 * Endpoint has a unique name within all the endpoints in the module.
139 Collection<WebServiceEndpoint> endpoints = new HashSet();
143 endpoints.add(next);
147 return endpoints;
155 Collection<WebServiceEndpoint> endpoints = new HashSet();
158 endpoints.add(next);
161 return endpoints;
H A DWebServiceEndpoint.java86 // Unique endpoint name within all the endpoints in the same module
134 // ejb endpoints and optional for servlet endpoints. This is because
137 // For ejb endpoints, the uri is relative to root of the
149 // For servlet endpoints, the uri is optional. If the uri is not specified,
160 // Optional authentication method for EJB endpoints.
764 * context root for servlet endpoints.
996 Collection endpoints =
999 if( endpoints.size() > 1 ) {
1001 " implements " + endpoints
[all...]
/glassfish-3.1.2/webservices/jsr109-impl/src/main/java/org/glassfish/webservices/cli/
H A DListWebServicesCommand.java100 Map<String, Map<String, Map<String, DeployedEndpointData>>> endpoints =
102 fillEndpoints(report, endpoints);
104 Map<String, Map<String, Map<String, DeployedEndpointData>>> endpoints =
106 fillEndpoints(report, endpoints);
108 Map<String, Map<String, Map<String, DeployedEndpointData>>> endpoints =
110 fillEndpoints(report, endpoints);
112 Map<String, Map<String, Map<String, DeployedEndpointData>>> endpoints = bean.getEndpoints();
113 fillEndpoints(report, endpoints);
118 private void fillEndpoints(ActionReport report, Map<String, Map<String, Map<String, DeployedEndpointData>>> endpoints) { argument
119 if (!endpoints
[all...]
/glassfish-3.1.2/webservices/jsr109-impl/src/main/java/org/glassfish/webservices/monitoring/
H A DWebServiceStatsProvider.java56 * Provides statistics for Web Service endpoints.
69 private final Map<String, DeployedEndpointData> endpoints = field in class:WebServiceStatsProvider
72 // Only RI endpoints
81 DeployedEndpointData data = endpoints.get(path);
84 endpoints.put(path, data);
100 DeployedEndpointData data = endpoints.remove(name);
117 return new MyStats(endpoints);
120 // Returns all the RI endpoints for context root
136 final Map<String, DeployedEndpointData> endpoints = new HashMap<String, DeployedEndpointData>(); field in class:WebServiceStatsProvider.MyStats
140 endpoints
[all...]
H A DWebServiceEngineImpl.java70 protected final Map<String, Endpoint> endpoints = new HashMap<String, Endpoint>(); field in class:WebServiceEngineImpl
102 endpoints.put(key, newEndpoint);
121 return endpoints.get(uri);
125 return endpoints.values().iterator();
134 // remove this endpoint from our list of endpoints
135 endpoints.remove(endpoint.getEndpointSelector());
/glassfish-3.1.2/appclient/client/acc/src/main/java/org/glassfish/appclient/client/acc/
H A DTargetServerHelper.java71 * endpoints based on (first) the target-server element(s) from the ACC
120 List<TargetServer> endpoints = new ArrayList<TargetServer>();
125 endpoints.addAll(cc.getTargetServer());
129 * endpoints property, if present.
132 endpoints.addAll(endpointsFromListList(endpointPropertySetting));
140 for (TargetServer ts : endpoints) {
157 return endpoints;
/glassfish-3.1.2/webservices/jsr109-impl/src/main/java/org/glassfish/webservices/deployment/
H A DWebServicesDeploymentMBean.java54 * MBean that provides deployed Web Service endpoints.
157 final Map<String, Endpoint> endpoints; field in class:WebServicesDeploymentMBean.Module
163 endpoints = new HashMap<String, Endpoint>();
169 for(Map.Entry<String, Endpoint> e : endpoints.entrySet()) {
178 Endpoint endpoint = endpoints.get(endpointName);
188 Endpoint endpoint = endpoints.get(endpointName);
191 endpoints.put(endpointName, endpoint);
196 endpoints.remove(endpointName);
200 return endpoints.isEmpty();
311 // Give a snapshot of all the endpoints
[all...]
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/core/
H A DEndpointRegistry.java55 /** Service QName to table of endpoints
58 private ConcurrentHashMap endpoints; field in class:EndpointRegistry
71 endpoints = new ConcurrentHashMap(11,0.75f,4);
90 Map map= (Map)endpoints.get(service);
93 endpoints.put(service, map);
103 Map map= (Map)endpoints.get(service);
116 Map map= (Map)endpoints.get(service);
123 for (Iterator itr = endpoints.values().iterator();itr.hasNext();) {
130 /** The endpoints are populated by ServiceEngineAppListener */
H A DJavaEEServiceEngineContext.java135 * @param endpoints list of end points to be activated in JBI
137 public void activateEndpoints(Iterator endpoints) argument
139 if (endpoints != null) {
140 while(endpoints.hasNext()) {
141 ServiceEndpoint endpoint = (ServiceEndpoint)endpoints.next();
H A DJBIEndpointManager.java76 * Class to manage enabling and disabling of endpoints in NMR. It uses
77 * EndpointHelper to manage the endpoints.
98 * corresponding to the endpoints specified in the jbi.xml
152 * Start all the endpoints specified in jbi.xml. In case of consumer just
153 * the state variable is set to started. For providers all the endpoints are
169 List<WebServiceEndpoint> endpoints = endpointInfoCollector.getEndpoints(su_Name);
170 for (WebServiceEndpoint endpoint : endpoints) {
199 * Disable the endpoints enabled in during start
307 * Inner class to manage jbi endpoints in the registry. As this class is
319 void addAllEndpointInfo(DescriptorEndpointInfo[] endpoints) { argument
[all...]
/glassfish-3.1.2/webservices/jsr109-impl/src/main/java/org/glassfish/webservices/
H A DJAXWSServletModule.java70 * require that all endpoints sharing a context root share a ServletMoule.
86 private final Hashtable<String, BoundEndpoint> endpoints = field in class:JAXWSServletModule
89 //the context-root for endpoints belonging to this module.
108 endpoints.put(uri, adapter);
112 return new ArrayList(endpoints.values());
H A DWsCompile.java184 Collection endpoints = webService.getEndpoints();
185 for(Iterator eIter = endpoints.iterator(); eIter.hasNext();) {
271 Collection endpoints = webService.getEndpoints();
273 for(Iterator iter = endpoints.iterator(); iter.hasNext(); ) {
H A DServletWebServiceDelegate.java135 Collection endpoints =
139 endpoint_ = (WebServiceEndpoint) endpoints.iterator().next();
H A DJAXWSServlet.java112 // Register endpoints here
241 Collection<WebServiceEndpoint> endpoints =
245 endpoint = endpoints.iterator().next();
/glassfish-3.1.2/orb/orb-iiop/src/main/java/org/glassfish/enterprise/iiop/impl/
H A DIIOPEndpointsInfo.java138 * This method returns the endpoints in host:port,host1:port1,host2:port2,...
143 String endpoints = null;
145 return endpoints;
H A DIiopFolbGmsClient.java462 for (SocketInfo sinfo : cinfo.endpoints()) {
481 List<String> endpoints) {
480 internalClusterInstanceInfo( List<String> endpoints) argument
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/bridge/
H A DEndpointInfoCollector.java73 * It is used for creating endpoints, when the application has load-on-startup as false.
112 return endpoints.get(appName);
117 * and updates the endpoints Map accordingly
142 endpoints.put(appName, list);
196 if (endpoints.containsKey(appName)) {
197 endpoints.remove(appName);
205 * the endpoints collected so far with the map maintained in
209 ws_endpoints.putAll(endpoints);
210 endpoints = ws_endpoints;
212 private static Map<String, List<WebServiceEndpoint>> endpoints field in class:EndpointInfoCollector
[all...]
H A DEndpointHelper.java103 Iterator<Endpoint> endpoints = engine.getEndpoints();
104 while(endpoints.hasNext()) {
105 registerEndpoint(endpoints.next());
301 Iterator<com.sun.enterprise.config.serverbeans.WebServiceEndpoint> endpoints = webServiceEndpoints.iterator();
303 while(endpoints.hasNext()){
304 endpointBean = endpoints.next();
315 // By default endpoints are disabled
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/node/runtime/
H A DWebServiceEndpointRuntimeNode.java62 * web service endpoints.
218 * writes all the runtime information for web service endpoints for
228 Collection endpoints = webServices.getEndpointsImplementedBy(ejb);
229 for(Iterator iter = endpoints.iterator(); iter.hasNext();) {
237 * writes all the runtime information for web service endpoints for
248 Collection endpoints = webServices.getEndpointsImplementedBy(webComp);
249 for(Iterator iter = endpoints.iterator(); iter.hasNext();) {
/glassfish-3.1.2/admingui/common/src/main/java/org/glassfish/admingui/common/util/
H A DDeployUtil.java129 List endpoints = new ArrayList();
140 endpoints.add(aMap);
151 endpoints.add(aMap);
160 return endpoints;
/glassfish-3.1.2/common/glassfish-naming/src/main/java/com/sun/enterprise/naming/impl/
H A DSerialContext.java470 * specifies endpoints in some form in that case, the sticky IC should
1203 private String endpoints = null ; field in class:SerialContext.ProviderCacheKey
1211 endpoints = "corbaloc:iiop:1.2@" + host + ":" + port
1215 ProviderCacheKey( String endpoints ) {
1216 this.endpoints = endpoints ;
1222 return "ProviderCacheKey[" + endpoints + "]" ;
1233 if (endpoints == null) {
1236 objref = orb.string_to_object(endpoints) ;
1253 return (orb != null) ? orb.hashCode() : endpoints
[all...]
H A DRoundRobinPolicy.java65 * The list of endpoints are randomized the very first time.
70 * implementation, the endpoints list willhave the following structure:
79 * under construction.This list of endpoints will have to be created during
81 * of theendpoints specified by the user in "com.sun.appserv.iiop.endpoints"
82 * property. We can assume a default weight for these endpoints (e.g 10).
84 * lookup call, the actual list of endpoints will beprovided back.
86 * the listener will get the updated list of endpoints from theserver.
87 * The implementation for choosing the endpoint from the list of endpoints
88 * is as follows:Let's assume 4 endpoints:A(wt=10), B(wt=30), C(wt=40),
188 filterSocketInfos( clinfo.endpoints() ) ;
[all...]
/glassfish-3.1.2/webservices/soap-tcp/src/main/java/org/glassfish/webservices/transport/tcp/
H A DAppServRegistry.java90 final Iterator<Endpoint> endpoints = engine.getEndpoints();
91 while(endpoints.hasNext()) {
92 registerEndpoint(endpoints.next());
/glassfish-3.1.2/webservices/jsr109-impl/src/main/java/org/glassfish/webservices/codegen/
H A DJaxRpcRICodegen.java316 Collection<WebServiceEndpoint> endpoints = webService.getEndpoints();
317 for(WebServiceEndpoint ep : endpoints) {
524 Collection endpoints = webService.getEndpoints();
525 if( endpoints.size() != 1 ) {
530 "multiple endpoints");
534 endpoints.iterator().next();
642 // with generated artifacts from other service-refs and endpoints

Completed in 54 milliseconds

12