Package com.avoka.tm.vo
Class SvcConn
- java.lang.Object
-
- com.avoka.tm.vo.SvcConn
-
public class SvcConn extends java.lang.ObjectProvides a Service Connection value object.- Since:
- 5.0.0
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.StringclientCodeThe organization client code.java.lang.StringendpointThe service connection endpoint.byte[]fileDataThe service connection file data.java.lang.StringfileNameThe service connection file name.java.lang.LongidThe service connection id (PK).java.lang.StringnameThe service connection name.java.lang.LongorgIdThe organization client id (PK).java.lang.Stringparam1The service connection parameter 1.java.lang.Stringparam2The service connection parameter 2.java.lang.Stringparam3The service connection parameter 3.java.lang.Stringparam4The service connection parameter 4.java.lang.StringpasswordThe service connection password.java.lang.StringtypeThe service connection type.java.lang.StringusernameThe service connection username.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()
-
-
-
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
-
-