public class SystemsPerChannelDto extends BaseDto
| Constructor and Description |
|---|
SystemsPerChannelDto()
Constructor
|
| Modifier and Type | Method and Description |
|---|---|
java.util.List<EssentialChannelDto> |
getAllowedBaseChannels()
What base channels could systems subscribed to "this" channel, be
resubscribed to?
|
java.util.List<EssentialChannelDto> |
getAllowedCustomChannels() |
java.util.List<ChildChannelDto> |
getAvailableChildren()
What child-channels are available to this channel
|
java.lang.Long |
getId()
Returns id to be stored in RhnSet.
|
java.lang.String |
getName()
What's this channels name?
|
int |
getSystemCount()
How many systems are currently subscribed to this channel?
|
void |
setAllowedBaseChannels(java.util.List<EssentialChannelDto> abc)
Set the list of channels appropriate for systems subscribed to "this"
channel, be resubscribed to
|
void |
setAllowedCustomChannels(java.util.List<EssentialChannelDto> allowedCustomChannelsIn) |
void |
setAvailableChildren(java.util.List<ChildChannelDto> inAC)
Set the child-channels available to this channel
|
void |
setId(java.lang.Long inId)
Set the id of the channel of interest
|
void |
setName(java.lang.String nameIn)
Set the name of the channel of interest
|
void |
setSystemCount(int inSC)
Set the number of systems subscribed to this channel
|
addToSet, getSelectionKey, toStringisDisabled, isSelectable, isSelected, setDisabled, setSelectedpublic java.lang.Long getId()
getId in interface IdentifiablegetId in class BaseDtopublic void setId(java.lang.Long inId)
inId - ID to set.public java.lang.String getName()
public void setName(java.lang.String nameIn)
nameIn - new namepublic int getSystemCount()
public void setSystemCount(int inSC)
inSC - new # of systems subscribedpublic java.util.List<EssentialChannelDto> getAllowedBaseChannels()
public void setAllowedBaseChannels(java.util.List<EssentialChannelDto> abc)
abc - list of allowed channelspublic java.util.List<ChildChannelDto> getAvailableChildren()
public void setAvailableChildren(java.util.List<ChildChannelDto> inAC)
inAC - available child channelspublic java.util.List<EssentialChannelDto> getAllowedCustomChannels()
public void setAllowedCustomChannels(java.util.List<EssentialChannelDto> allowedCustomChannelsIn)
allowedCustomChannelsIn - Allowed custom channels to set.