Package tigase.http
Class DeploymentInfo
- java.lang.Object
-
- tigase.http.DeploymentInfo
-
public class DeploymentInfo extends Object
- Author:
- andrzej
-
-
Constructor Summary
Constructors Constructor Description DeploymentInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DeploymentInfoaddServlets(ServletInfo... servlets)<T> Tget(String key)ClassLoadergetClassLoader()StringgetContextPath()StringgetDeploymentDescription()StringgetDeploymentName()ServicegetService()ServletInfo[]getServlets()String[]getVHosts()voidput(String key, Object value)DeploymentInfosetClassLoader(ClassLoader classLoader)DeploymentInfosetContextPath(String contextPath)DeploymentInfosetDeploymentDescription(String description)DeploymentInfosetDeploymentName(String name)DeploymentInfosetService(Service service)DeploymentInfosetVHosts(String... vhosts)
-
-
-
Method Detail
-
getClassLoader
public ClassLoader getClassLoader()
-
setClassLoader
public DeploymentInfo setClassLoader(ClassLoader classLoader)
-
getContextPath
public String getContextPath()
-
setContextPath
public DeploymentInfo setContextPath(String contextPath)
-
getDeploymentDescription
public String getDeploymentDescription()
-
setDeploymentDescription
public DeploymentInfo setDeploymentDescription(String description)
-
getDeploymentName
public String getDeploymentName()
-
setDeploymentName
public DeploymentInfo setDeploymentName(String name)
-
getServlets
public ServletInfo[] getServlets()
-
addServlets
public DeploymentInfo addServlets(ServletInfo... servlets)
-
getVHosts
public String[] getVHosts()
-
setVHosts
public DeploymentInfo setVHosts(String... vhosts)
-
get
public <T> T get(String key)
-
getService
public Service getService()
-
setService
public DeploymentInfo setService(Service service)
-
-