brooklyn.entity.webapp.jboss.JBoss6Server Maven / Gradle / Ivy
package brooklyn.entity.webapp.jboss;
import brooklyn.catalog.Catalog;
import brooklyn.config.ConfigKey;
import brooklyn.entity.basic.ConfigKeys;
import brooklyn.entity.basic.SoftwareProcess;
import brooklyn.entity.java.UsesJmx;
import brooklyn.entity.proxying.ImplementedBy;
import brooklyn.entity.webapp.JavaWebAppService;
import brooklyn.entity.webapp.JavaWebAppSoftwareProcess;
import brooklyn.event.basic.BasicAttributeSensorAndConfigKey;
import brooklyn.util.flags.SetFromFlag;
@Catalog(name="JBoss Application Server 6", description="AS6: an open source Java application server from JBoss", iconUrl="classpath:///jboss-logo.png")
@ImplementedBy(JBoss6ServerImpl.class)
public interface JBoss6Server extends JavaWebAppSoftwareProcess, JavaWebAppService, UsesJmx {
// TODO Instead of using portIncrement, would prefer to use http_port as "8080+" etc.
// On localhost, if an existing jboss6 is running and consuming the required port(s),
// then we don't spot that and don't claim a different port.
// Things then fail silently!
@SetFromFlag("version")
ConfigKey SUGGESTED_VERSION =
ConfigKeys.newConfigKeyWithDefault(SoftwareProcess.SUGGESTED_VERSION, "6.0.0.Final");
@SetFromFlag("downloadUrl")
BasicAttributeSensorAndConfigKey DOWNLOAD_URL = new BasicAttributeSensorAndConfigKey(
SoftwareProcess.DOWNLOAD_URL, "http://downloads.sourceforge.net/project/jboss/JBoss/JBoss-${version}/jboss-as-distribution-${version}.zip?" +
"r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fjboss%2Ffiles%2FJBoss%2F${version}%2F&ts=1307104229&use_mirror=kent");
@SetFromFlag("bindAddress")
BasicAttributeSensorAndConfigKey BIND_ADDRESS =
new BasicAttributeSensorAndConfigKey(String.class, "jboss6.bind.address",
"Address of interface JBoss should listen on, defaulting 0.0.0.0 (but could set e.g. to attributeWhenReady(HOSTNAME)",
"0.0.0.0");
@SetFromFlag("portIncrement")
BasicAttributeSensorAndConfigKey PORT_INCREMENT =
new BasicAttributeSensorAndConfigKey(Integer.class, "jboss6.portincrement", "Increment to be used for all jboss ports", 0);
@SetFromFlag("clusterName")
BasicAttributeSensorAndConfigKey CLUSTER_NAME =
new BasicAttributeSensorAndConfigKey(String.class, "jboss6.clusterName", "Identifier used to group JBoss instances", "");
}