/* * JBoss, Home of Professional Open Source. * Copyright 2006, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.metadata; import org.w3c.dom.Element; import org.jboss.deployment.DeploymentException; import org.jboss.system.server.ServerConfig; import org.jboss.system.server.ServerConfigUtil; /** * The meta data object for the cluster-config element. * This element only defines the HAPartition name at this time. It will be * expanded to include other cluster configuration parameters later on. * @author Bill Burke. * @version $Revision: 57209 $ */ public class ClusterConfigMetaData extends MetaData { public final static String JNDI_PREFIX_FOR_SESSION_STATE = "/HASessionState/"; public final static String DEFAULT_SESSION_STATE_NAME = JNDI_PREFIX_FOR_SESSION_STATE + "Default"; private String partitionName = ServerConfigUtil.getDefaultPartitionName(); private String homeLoadBalancePolicy = null; private String beanLoadBalancePolicy = null; private String haSessionStateName = DEFAULT_SESSION_STATE_NAME; public String getPartitionName() { return partitionName; } public String getHomeLoadBalancePolicy() { return homeLoadBalancePolicy; } public String getBeanLoadBalancePolicy() { return beanLoadBalancePolicy; } // SFSB only // public String getHaSessionStateName() { return this.haSessionStateName; } public void init(BeanMetaData data) { homeLoadBalancePolicy = "org.jboss.ha.framework.interfaces.RoundRobin"; if (beanLoadBalancePolicy == null) { if (data.isSession()) { if (((SessionMetaData) data).isStateful()) { beanLoadBalancePolicy = "org.jboss.ha.framework.interfaces.FirstAvailable"; } else { beanLoadBalancePolicy = "org.jboss.ha.framework.interfaces.RoundRobin"; } } else if (data.isEntity()) { beanLoadBalancePolicy = "org.jboss.ha.framework.interfaces.FirstAvailable"; } else { beanLoadBalancePolicy = "org.jboss.ha.framework.interfaces.FirstAvailable"; } } } public void importJbossXml(Element element) throws DeploymentException { partitionName = getElementContent(getOptionalChild(element, "partition-name"), null); if (partitionName == null) partitionName = ServerConfigUtil.getDefaultPartitionName(); homeLoadBalancePolicy = getElementContent(getOptionalChild(element, "home-load-balance-policy"), homeLoadBalancePolicy); beanLoadBalancePolicy = getElementContent(getOptionalChild(element, "bean-load-balance-policy"), beanLoadBalancePolicy); // SFSB settings only // haSessionStateName = getElementContent(getOptionalChild(element, "session-state-manager-jndi-name"), DEFAULT_SESSION_STATE_NAME); } }