Class SystemApplicationControllerApplicationControllerTableRow
- java.lang.Object
-
- co.ecg.alpaca.toolkit.generated.tables.SystemApplicationControllerApplicationControllerTableRow
-
- All Implemented Interfaces:
BroadWorksTableRow
,Serializable
public class SystemApplicationControllerApplicationControllerTableRow extends Object implements BroadWorksTableRow, Serializable
Response to the SystemApplicationControllerGetListRequest. Contains a table with column headings: "Name", "Subscriber Id", "Channel Set Id", "Status". The column values for "Status" can either be "ready" or "notReady".- Author:
- AlpacaGenerator
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SystemApplicationControllerApplicationControllerTableRow()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getChannelSetId()
static SystemApplicationControllerApplicationControllerTableRow
getFromNode(Node n, BroadWorksLoginType loginType, LibraryProperties.BroadWorksServerConfig.DataMode dataMode)
Creates the OCI Table Row with the given Nodestatic List<SystemApplicationControllerApplicationControllerTableRow>
getFromNodeArray(Node[] nodeArray, BroadWorksLoginType loginType, LibraryProperties.BroadWorksServerConfig.DataMode dataMode)
Creates the OCI Table Type Array with the given NodeArrayString
getName()
String
getStatus()
String
getSubscriberId()
int
hashCode()
void
setChannelSetId(String channelSetId)
void
setName(String name)
void
setStatus(String status)
void
setSubscriberId(String subscriberId)
String
toString()
-
-
-
Method Detail
-
getName
public String getName()
-
setName
public void setName(String name)
-
getSubscriberId
public String getSubscriberId()
-
setSubscriberId
public void setSubscriberId(String subscriberId)
-
getChannelSetId
public String getChannelSetId()
-
setChannelSetId
public void setChannelSetId(String channelSetId)
-
getStatus
public String getStatus()
-
setStatus
public void setStatus(String status)
-
getFromNode
public static SystemApplicationControllerApplicationControllerTableRow getFromNode(Node n, BroadWorksLoginType loginType, LibraryProperties.BroadWorksServerConfig.DataMode dataMode)
Creates the OCI Table Row with the given Node- Parameters:
n
- The Node to parse for the OCI Table
-
getFromNodeArray
public static List<SystemApplicationControllerApplicationControllerTableRow> getFromNodeArray(Node[] nodeArray, BroadWorksLoginType loginType, LibraryProperties.BroadWorksServerConfig.DataMode dataMode)
Creates the OCI Table Type Array with the given NodeArray- Parameters:
nodeArray
- The NodeArray to parse for the OCI Table
-
-