Class UserServiceServicePacksAssignmentTableRow
- java.lang.Object
-
- co.ecg.alpaca.toolkit.generated.tables.UserServiceServicePacksAssignmentTableRow
-
- All Implemented Interfaces:
BroadWorksTableRow
,Serializable
public class UserServiceServicePacksAssignmentTableRow extends Object implements BroadWorksTableRow, Serializable
Response to UserServiceGetAssignmentListRequest. Contains two tables, one for the service packs, and one for the user services. The user table has the column headings: "Service Name", "Assigned", The service pack table's column headings are: "Service Pack Name", "Assigned", "Description". The "Assigned" column has either a true or false value- Author:
- AlpacaGenerator
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UserServiceServicePacksAssignmentTableRow()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getAssigned()
String
getDescription()
static UserServiceServicePacksAssignmentTableRow
getFromNode(Node n, BroadWorksLoginType loginType, LibraryProperties.BroadWorksServerConfig.DataMode dataMode)
Creates the OCI Table Row with the given Nodestatic List<UserServiceServicePacksAssignmentTableRow>
getFromNodeArray(Node[] nodeArray, BroadWorksLoginType loginType, LibraryProperties.BroadWorksServerConfig.DataMode dataMode)
Creates the OCI Table Type Array with the given NodeArrayString
getServicePackName()
int
hashCode()
void
setAssigned(String assigned)
void
setDescription(String description)
void
setServicePackName(String servicePackName)
String
toString()
-
-
-
Method Detail
-
getServicePackName
public String getServicePackName()
-
setServicePackName
public void setServicePackName(String servicePackName)
-
getAssigned
public String getAssigned()
-
setAssigned
public void setAssigned(String assigned)
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String description)
-
getFromNode
public static UserServiceServicePacksAssignmentTableRow 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<UserServiceServicePacksAssignmentTableRow> 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
-
-