Package org.flowable.ui.admin.domain
Class ServerConfig
- java.lang.Object
-
- org.flowable.ui.admin.domain.ServerConfig
-
- All Implemented Interfaces:
Serializable
public class ServerConfig extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected StringcontextRootThe context root under which the application where the rest endpoint is running on.protected StringdescriptionThe description for the endpoint.protected IntegerendpointTypeThe code of the endpoint.protected StringidThe id of the server config.protected StringnameThe name of the endpoint.protected StringpasswordThe password that needs to be used when accessing the endpoint.protected IntegerportThe port for the endpoint.protected StringrestRootThe path for accessing the endpoint.protected StringserverAddressThe server host for the endpoint.protected StringtenantIdThe tenant id of the endpoint.protected StringuserNameThe username that needs to be used when accessing the endpoint.
-
Constructor Summary
Constructors Constructor Description ServerConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetContextRoot()StringgetDescription()IntegergetEndpointType()StringgetId()StringgetName()StringgetPassword()IntegergetPort()StringgetRestRoot()StringgetServerAddress()StringgetUserName()inthashCode()voidsetContextRoot(String contextRoot)voidsetDescription(String description)voidsetEndpointType(Integer endpointType)voidsetId(String id)voidsetName(String name)voidsetPassword(String password)voidsetPort(Integer port)voidsetRestRoot(String restRoot)voidsetServerAddress(String serverAddress)voidsetUserName(String userName)StringtoString()
-
-
-
Field Detail
-
id
protected String id
The id of the server config.
-
name
protected String name
The name of the endpoint.
-
description
protected String description
The description for the endpoint.
-
serverAddress
protected String serverAddress
The server host for the endpoint.
-
port
protected Integer port
The port for the endpoint.
-
contextRoot
protected String contextRoot
The context root under which the application where the rest endpoint is running on.
-
restRoot
protected String restRoot
The path for accessing the endpoint.
-
userName
protected String userName
The username that needs to be used when accessing the endpoint.
-
password
protected String password
The password that needs to be used when accessing the endpoint.
-
endpointType
protected Integer endpointType
The code of the endpoint. Setting this property via configuration parameters has no effect.
-
tenantId
protected String tenantId
The tenant id of the endpoint.
-
-
Method Detail
-
getId
public String getId()
-
setId
public void setId(String id)
-
getName
public String getName()
-
setName
public void setName(String name)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getServerAddress
public String getServerAddress()
-
setServerAddress
public void setServerAddress(String serverAddress)
-
getPort
public Integer getPort()
-
setPort
public void setPort(Integer port)
-
getContextRoot
public String getContextRoot()
-
setContextRoot
public void setContextRoot(String contextRoot)
-
getRestRoot
public String getRestRoot()
-
setRestRoot
public void setRestRoot(String restRoot)
-
getUserName
public String getUserName()
-
setUserName
public void setUserName(String userName)
-
getPassword
public String getPassword()
-
setPassword
public void setPassword(String password)
-
getEndpointType
public Integer getEndpointType()
-
setEndpointType
public void setEndpointType(Integer endpointType)
-
-