Package com.avoka.tm.vo
Class SvcConn
- java.lang.Object
-
- com.avoka.tm.vo.SvcConn
-
public class SvcConn extends Object
Provides a Service Connection value object.- Since:
- 5.0.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getClientCode()
The organization client code.String
getEndpoint()
The service connection endpoint.byte[]
getFileData()
The service connection file data.String
getFileName()
The service connection file name.Long
getId()
The service connection id (PK).String
getName()
The service connection name.Long
getOrgId()
The organization client id (PK).String
getParam1()
The service connection parameter 1.String
getParam2()
The service connection parameter 2.String
getParam3()
The service connection parameter 3.String
getParam4()
The service connection parameter 4.String
getPassword()
The service connection password.String
getType()
The service connection type.String
getUsername()
The service connection username.String
toString()
-
-
-
Constructor Detail
-
SvcConn
public SvcConn()
-
SvcConn
public SvcConn(com.avoka.fc.core.entity.ServiceConnection sc)
Create a service connection value object from the given entity parameter.- Parameters:
sc
- the service connection entity (required)
-
SvcConn
public SvcConn(Map fields)
Create a unit testing SvcConn value object with the given fields.- Parameters:
fields
- the service connection entity fields (required)- Since:
- 5.1.4
-
-
Method Detail
-
toString
public String toString()
-
getId
public Long getId()
The service connection id (PK).
-
getName
public String getName()
The service connection name.
-
getOrgId
public Long getOrgId()
The organization client id (PK).
-
getClientCode
public String getClientCode()
The organization client code.
-
getEndpoint
public String getEndpoint()
The service connection endpoint.
-
getType
public String getType()
The service connection type.
-
getUsername
public String getUsername()
The service connection username.
-
getPassword
public String getPassword()
The service connection password.
-
getParam1
public String getParam1()
The service connection parameter 1.
-
getParam2
public String getParam2()
The service connection parameter 2.
-
getParam3
public String getParam3()
The service connection parameter 3.
-
getParam4
public String getParam4()
The service connection parameter 4.
-
getFileData
public byte[] getFileData()
The service connection file data.
-
getFileName
public String getFileName()
The service connection file name.
-
-