Searched refs:gms (Results 1 - 22 of 22) sorted by relevance

/glassfish-3.1.2/cluster/gms-adapter/src/main/java/org/glassfish/gms/admin/
H A DGMSAnnounceSupplementalInfo.java41 package org.glassfish.gms.admin;
44 import org.glassfish.gms.bootstrap.GMSAdapter;
51 final public GroupManagementService gms; field in class:GMSAnnounceSupplementalInfo
57 this.gms = adapter.getModule();
H A DGMSAnnounceBeforeStartClusterCommand.java41 package org.glassfish.gms.admin;
44 import org.glassfish.gms.bootstrap.GMSAdapterService;
45 import org.glassfish.gms.bootstrap.GMSAdapter;
92 private GroupManagementService gms = null; field in class:GMSAnnounceBeforeStartClusterCommand
109 gms = gmsadapter.getModule();
110 if (gms != null) {
121 // no gms calls needed if not a GROUP_STARTUP.
122 List<String> startedGMSMembers = gms.getGroupHandle().getCurrentCoreMembers();
126 gms.announceGroupStartup(clusterName, GMSConstants.groupStartupState.INITIATED, clusterMembers);
130 // ensure gms grou
[all...]
H A DGMSAnnounceBeforeStopClusterCommand.java41 package org.glassfish.gms.admin;
44 import org.glassfish.gms.bootstrap.GMSAdapterService;
45 import org.glassfish.gms.bootstrap.GMSAdapter;
93 private GroupManagementService gms = null; field in class:GMSAnnounceBeforeStopClusterCommand
110 gms = gmsadapter.getModule();
111 if (gms != null) {
122 // no gms calls needed if not a GROUP_STARTUP.
123 List<String> startedGMSMembers = gms.getGroupHandle().getCurrentCoreMembers();
127 gms.announceGroupShutdown(clusterName, GMSConstants.shutdownState.INITIATED);
131 // ensure gms grou
[all...]
H A DGMSAnnounceAfterStopClusterCommand.java41 package org.glassfish.gms.admin;
50 import org.glassfish.gms.bootstrap.GMSAdapterService;
89 if (gmsInfo.gms != null) {
90 gmsInfo.gms.announceGroupShutdown(clusterName, groupShutdownState);
93 // ensure gms group startup announcement does not interfere with starting cluster.
H A DGMSAnnounceAfterStartClusterCommand.java41 package org.glassfish.gms.admin;
50 import org.glassfish.gms.bootstrap.GMSAdapterService;
133 if (gmsInfo.gms != null) {
138 gmsInfo.gms.announceGroupStartup(clusterName, groupStartupState, members);
141 // ensure gms group startup announcement does not interfere with starting cluster.
H A DValidateMulticastCommand.java41 package org.glassfish.gms.admin;
44 import com.sun.enterprise.gms.tools.MulticastTester;
56 * in shoal-gms-impl.jar
/glassfish-3.1.2/cluster/gms-adapter/src/main/java/org/glassfish/gms/
H A DGMSConfigUpgrade.java41 package org.glassfish.gms;
62 * Startup service to upgrade cluster/gms elements in domain.xml
112 //set gms-enabled (default is true incase it may not appear in upgraded
120 //set gms-multicast-address the value obtained from heartbeat-address
134 // generate a valid gms multicast address. Either heartbeataddress was missing OR had an invalid value from v2 domain.xml
138 //set gms-multicast-port the value of heartbeat-port.
152 // generate a valid gms multicastport. Either heartbeatport was not set or was set to a value that is now invalid in v3.1.
158 //gms-bind-interface is an attribute of cluster in 3.1
159 Property prop = cluster.getProperty("gms-bind-interface-address");
182 GroupManagementService gms
[all...]
H A DGMSAdapterImpl.java41 package org.glassfish.gms;
57 import org.glassfish.gms.bootstrap.GMSAdapter;
58 import org.glassfish.gms.bootstrap.HealthHistory;
94 private GroupManagementService gms; field in class:GMSAdapterImpl
185 gms = GMSFactory.getGMSModule(clusterName);
189 if (gms != null) {
233 // prevent access to a malformed gms object.
237 // that the malformed gms object is not allowed to be accesssed through the gms adapter.
240 // prevent access to a malformed gms objec
[all...]
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/spi/distributed/
H A DReadOnlyBeanMessageCallBack.java45 import org.glassfish.gms.bootstrap.GMSAdapter;
46 import org.glassfish.gms.bootstrap.GMSAdapterService;
71 private GroupManagementService gms; field in class:ReadOnlyBeanMessageCallBack
80 gms = gmsAdapter.getModule();
125 gms.getGroupHandle().sendMessage(GMS_READ_ONLY_COMPONENT_NAME, payload);
146 gms.getGroupHandle().sendMessage(GMS_READ_ONLY_COMPONENT_NAME, payload);
H A DDistributedEJBTimerServiceImpl.java49 import org.glassfish.gms.bootstrap.GMSAdapter;
50 import org.glassfish.gms.bootstrap.GMSAdapterService;
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/enterprise/transaction/jts/recovery/
H A DGMSCallBack.java63 import org.glassfish.gms.bootstrap.GMSAdapter;
64 import org.glassfish.gms.bootstrap.GMSAdapterService;
91 private GroupManagementService gms; field in class:GMSCallBack
116 gms = gmsAdapter.getModule();
123 gms.updateMemberDetails(instanceName, TXLOGLOCATION, logdir);
201 DistributedStateCache dsc=gms.getGroupHandle().getDistributedStateCache();
222 // Could also be a gms distributed state cache bug.
/glassfish-3.1.2/cluster/admin/src/main/java/com/sun/enterprise/v3/admin/cluster/
H A DGetHealthCommand.java53 import org.glassfish.gms.bootstrap.GMSAdapter;
54 import org.glassfish.gms.bootstrap.GMSAdapterService;
55 import org.glassfish.gms.bootstrap.HealthHistory;
74 * non-GMS case, look for the else block with comment "non-gms"
111 * Check that gms is enabled for this cluster. Could also check
121 // if someone wants to implement the non-gms case, here's where
/glassfish-3.1.2/cluster/gms-bootstrap/src/main/java/org/glassfish/gms/bootstrap/
H A DGMSAdapterService.java41 package org.glassfish.gms.bootstrap;
73 * one cluster present with the gms-enabled attribute set to true.
75 * instance has gms-enabled set to true.
118 * a gms-enabled cluster is first created during runtime.
188 * Create a GMSAdapter for each cluster that has gms enabled.
203 logger.log(TRACE_LEVEL, String.format("cluster %s found with gms-enabled='%s'",
225 com.sun.enterprise.config.serverbeans.GroupManagementService gms =
229 for (Property prop : gms.getProperty()) {
266 "creating gms-adapter for clustername " + name +
267 " since no gms adapte
[all...]
H A DGMSAdapter.java41 package org.glassfish.gms.bootstrap;
H A DHealthHistory.java41 package org.glassfish.gms.bootstrap;
/glassfish-3.1.2/security/ejb.security/src/main/java/com/sun/enterprise/iiop/security/
H A DSecIORInterceptor.java56 import org.glassfish.gms.bootstrap.GMSAdapter;
57 import org.glassfish.gms.bootstrap.GMSAdapterService;
/glassfish-3.1.2/orb/orb-iiop/src/main/java/org/glassfish/enterprise/iiop/impl/
H A DGlassFishORBFactoryImpl.java54 import org.glassfish.gms.bootstrap.GMSAdapterService;
H A DIiopFolbGmsClient.java80 import org.glassfish.gms.bootstrap.GMSAdapter;
81 import org.glassfish.gms.bootstrap.GMSAdapterService;
/glassfish-3.1.2/web/web-ha/src/main/java/org/glassfish/web/ha/authenticator/
H A DHASSOFactory.java56 import org.glassfish.gms.bootstrap.GMSAdapterService;
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/builder/
H A DStatefulContainerBuilder.java74 import org.glassfish.gms.bootstrap.GMSAdapter;
75 import org.glassfish.gms.bootstrap.GMSAdapterService;
272 vendorMap.put("start.gms", false);
/glassfish-3.1.2/web/web-ha/src/main/java/org/glassfish/web/ha/session/management/
H A DReplicationWebEventPersistentManager.java56 import org.glassfish.gms.bootstrap.GMSAdapterService;
/glassfish-3.1.2/webservices/metro-glue/src/main/java/org/glassfish/webservices/metroglue/
H A DMetroContainer.java75 import org.glassfish.gms.bootstrap.GMSAdapterService;

Completed in 23 milliseconds