Searched defs:clusters (Results 1 - 16 of 16) sorted by relevance

/glassfish-3.1.2/admin/config-api/src/main/java/com/sun/enterprise/config/serverbeans/
H A DClusters.java62 * Return the list of clusters currently configured
84 public static Cluster getCluster(Clusters clusters, String name) { argument
85 for (Cluster cluster : clusters.getCluster()) {
/glassfish-3.1.2/core/logging/src/main/java/com/sun/enterprise/server/logging/commands/
H A DListLogAttributes.java91 Clusters clusters; field in class:ListLogAttributes
H A DListLoggerLevels.java89 Clusters clusters; field in class:ListLoggerLevels
H A DSetLogAttributes.java103 Clusters clusters; field in class:SetLogAttributes
/glassfish-3.1.2/admin/util/src/main/java/org/glassfish/admin/cli/resources/
H A DListResourceRefs.java86 private Clusters clusters; field in class:ListResourceRefs
103 List<com.sun.enterprise.config.serverbeans.Cluster> clusterList = clusters.getCluster();
/glassfish-3.1.2/cluster/gms-adapter/src/main/java/org/glassfish/gms/
H A DGMSConfigUpgrade.java70 Clusters clusters; field in class:GMSConfigUpgrade
93 List<Cluster> clusterList = clusters.getCluster();
H A DGMSAdapterImpl.java101 * Used only for user-managed clusters. This ties each cluster
110 * Used only for user-managed clusters. This prop can be set
154 Clusters clusters; field in class:GMSAdapterImpl
204 if (cluster == null && clusters != null) {
206 // iterate over all clusters to find the cluster that has name passed in.
207 for (Cluster clusterI : clusters.getCluster()) {
483 * Special case for user-managed clusters. This is the equivalent
/glassfish-3.1.2/jdbc/admin/src/main/java/org/glassfish/jdbc/admin/cli/
H A DDeleteJdbcConnectionPool.java92 private Cluster[] clusters; field in class:DeleteJdbcConnectionPool
105 ResourceStatus rs = jdbcConnMgr.delete(servers, clusters, domain.getResources(), cascade.toString(), poolName);
H A DJDBCConnectionPoolManager.java318 public ResourceStatus delete(Server[] servers, Cluster[] clusters, final Resources resources, final String cascade, argument
338 Object obj = deleteAssociatedResources(servers, clusters, resources,
379 private Object deleteAssociatedResources(final Server[] servers, final Cluster[] clusters, Resources resources, argument
388 deleteResourceRefs(clusters, referringResource.getJndiName());
413 private void deleteResourceRefs(Cluster[] clusters, final String refName) argument
415 if(clusters != null){
416 for (Cluster cluster : clusters) {
/glassfish-3.1.2/connectors/admin/src/main/java/org/glassfish/connectors/admin/cli/
H A DDeleteConnectorConnectionPool.java96 private Cluster[] clusters; field in class:DeleteConnectorConnectionPool
126 Object obj = deleteAssociatedResources(servers, clusters, domain.getResources(),
172 private Object deleteAssociatedResources(final Server[] servers, final Cluster[] clusters, Resources resources, argument
181 deleteResourceRefs(clusters, referringResource.getJndiName());
208 private void deleteResourceRefs(Cluster[] clusters, final String refName) argument
210 if(clusters != null){
211 for (Cluster cluster : clusters) {
/glassfish-3.1.2/load-balancer/admin/src/main/java/org/glassfish/loadbalancer/admin/cli/reader/impl/
H A DLoadbalancerReaderImpl.java75 public LoadbalancerReaderImpl(Domain domain, ApplicationRegistry appRegistry, Set<String> clusters, Properties properties) { argument
78 _clusters = clusters;
133 //Mix of standalone instances and clusters is not allowed
/glassfish-3.1.2/cluster/admin/src/main/java/com/sun/enterprise/v3/admin/cluster/
H A DExportSyncBundle.java230 if (clusters != null) {
231 cluster = clusters.getCluster(cluster_instance);
290 private Clusters clusters; field in class:ExportSyncBundle
/glassfish-3.1.2/cluster/gms-bootstrap/src/main/java/org/glassfish/gms/bootstrap/
H A DGMSAdapterService.java96 Clusters clusters; field in class:GMSAdapterService
139 // in the UMC case, check server-config, otherwise check clusters
145 } else if (clusters != null) {
147 checkAllClusters(clusters);
190 private void checkAllClusters(Clusters clusters) { argument
192 logger.log(TRACE_LEVEL, "In DAS. Checking all clusters.");
194 for (Cluster cluster : clusters.getCluster()) {
251 * Initial support for multiple clusters in DAS. A clustered instance can
318 // todo: when supporting multiple clusters, ensure that newly added cluster has a different gms-multicast-address than all existing clusters
[all...]
/glassfish-3.1.2/admin/config-api/src/main/java/org/glassfish/config/support/
H A DDomainXmlPreParser.java60 * clusters
64 * with the streaming parser. As of July 6,2010 the clusters ALWAYS appears after the
163 for (ClusterData cd : clusters) {
247 clusters.add(cd);
301 private List<ClusterData> clusters = new LinkedList<ClusterData>(); field in class:DomainXmlPreParser
/glassfish-3.1.2/jms/jms-core/src/main/java/com/sun/enterprise/connectors/jms/util/
H A DJmsRaUtil.java156 public static boolean isClustered(List clusters, String instanceName) { argument
158 return (enableClustering() && isServerClustered(clusters,
164 public static boolean isServerClustered(List clusters, String instanceName) argument
166 return (getClusterForServer(clusters, instanceName) != null);
168 public static Cluster getClusterForServer(List clusters, String instanceName){ argument
171 for (int i = 0; i < clusters.size(); i++) {
172 final List servers = ((Cluster)clusters.get(i)).getInstances();
177 return (Cluster) clusters.get(i);
186 * No uMQ clusters will be created with AS cluster if
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/universal/xml/
H A DMiniXmlParser.java291 skipTo("servers", "property", "clusters", "system-property");
296 else if ("clusters".equals(name))
330 skipTo("configs", "property", "clusters", "system-property");
335 if ("clusters".equals(name))
631 // find the domain name and/or clusters, if it is there
638 while (skipToButNotPast("domain", "property", "clusters", "system-property","secure-admin")) {
640 if ("clusters".equals(name))
913 // clusters is short and sweet. Just parse the whole thing first -- and then do
916 // cursor ==> clusters
917 // if there is more than one clusters elemen
1004 private List<ParsedCluster> clusters = null; field in class:MiniXmlParser
[all...]

Completed in 31 milliseconds