Package com.avoka.tm.vo
Class SvcConn
- java.lang.Object
-
- com.avoka.tm.vo.SvcConn
-
public class SvcConn extends java.lang.Object
Provides a Service Connection value object.- Since:
- 5.0.0
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.String
clientCode
The organization client code.java.lang.String
endpoint
The service connection endpoint.byte[]
fileData
The service connection file data.java.lang.String
fileName
The service connection file name.java.lang.Long
id
The service connection id (PK).java.lang.String
name
The service connection name.java.lang.Long
orgId
The organization client id (PK).java.lang.String
param1
The service connection parameter 1.java.lang.String
param2
The service connection parameter 2.java.lang.String
param3
The service connection parameter 3.java.lang.String
param4
The service connection parameter 4.java.lang.String
password
The service connection password.java.lang.String
type
The service connection type.java.lang.String
username
The service connection username.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
-
-
-
Field Detail
-
id
public final java.lang.Long id
The service connection id (PK).
-
name
public final java.lang.String name
The service connection name.
-
orgId
public final java.lang.Long orgId
The organization client id (PK).
-
clientCode
public final java.lang.String clientCode
The organization client code.
-
endpoint
public final java.lang.String endpoint
The service connection endpoint.
-
type
public final java.lang.String type
The service connection type.
-
username
public final java.lang.String username
The service connection username.
-
password
public final java.lang.String password
The service connection password.
-
param1
public final java.lang.String param1
The service connection parameter 1.
-
param2
public final java.lang.String param2
The service connection parameter 2.
-
param3
public final java.lang.String param3
The service connection parameter 3.
-
param4
public final java.lang.String param4
The service connection parameter 4.
-
fileData
public final byte[] fileData
The service connection file data.
-
fileName
public final java.lang.String fileName
The service connection file name.
-
-
Constructor Detail
-
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(java.util.Map fields)
Create a unit testing SvcConn value object with the given fields.- Parameters:
fields
- the submission entity fields (required)- Since:
- 5.1.4
-
-