Searched defs:endpoints (Results 1 - 14 of 14) sorted by relevance

/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 DWsUtil.java528 Collection endpoints = webService.getEndpoints();
541 endpointsCopy.addAll(endpoints);
782 //Verify that all the endpoints are of the same type
929 private Templates createTemplatesFor(Collection endpoints, argument
1032 for(Iterator iter = endpoints.iterator(); iter.hasNext();) {
1703 Collection endpoints =
1705 if( endpoints.size() == 1 ) {
1719 } else if( endpoints.size() > 1 ) {
1721 " implements " + endpoints.size() + " web service 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/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...]
/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 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...]
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();
/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/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...]
/glassfish-3.1.2/orb/orb-iiop/src/main/java/org/glassfish/enterprise/iiop/impl/
H A DIiopFolbGmsClient.java462 for (SocketInfo sinfo : cinfo.endpoints()) {
481 List<String> endpoints) {
480 internalClusterInstanceInfo( List<String> endpoints) argument
H A DGlassFishORBManager.java648 // endpoints of the same type, or no clear text endpoint at all in the
861 private String[] getORBInitRef(String endpoints) { argument
863 String[] list = endpoints.split(",");
881 "com.sun.appserv.iiop.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...]

Completed in 72 milliseconds