/glassfish-3.1.2/cluster/gms-adapter/src/main/java/org/glassfish/gms/admin/ |
H A D | GMSAnnounceSupplementalInfo.java | 41 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 D | GMSAnnounceBeforeStopClusterCommand.java | 41 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 D | GMSAnnounceBeforeStartClusterCommand.java | 41 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 D | GMSAnnounceAfterStopClusterCommand.java | 41 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 D | ValidateMulticastCommand.java | 41 package org.glassfish.gms.admin; 44 import com.sun.enterprise.gms.tools.MulticastTester; 56 * in shoal-gms-impl.jar
|
H A D | GMSAnnounceAfterStartClusterCommand.java | 41 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.
|
/glassfish-3.1.2/cluster/gms-adapter/src/main/java/org/glassfish/gms/ |
H A D | GMSConfigUpgrade.java | 41 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 D | GMSAdapterImpl.java | 41 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 D | ReadOnlyBeanMessageCallBack.java | 45 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);
|
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/enterprise/transaction/jts/recovery/ |
H A D | GMSCallBack.java | 63 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/gms-bootstrap/src/main/java/org/glassfish/gms/bootstrap/ |
H A D | GMSAdapter.java | 41 package org.glassfish.gms.bootstrap;
|
H A D | GMSAdapterService.java | 41 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 D | HealthHistory.java | 41 package org.glassfish.gms.bootstrap;
|