Package de.elo.ix.client
Class EventBusParams
java.lang.Object
byps.BValueClass
de.elo.ix.client.ValueClass
de.elo.ix.client.EventBusParams
- All Implemented Interfaces:
- java.io.Serializable
public class EventBusParams extends ValueClass
This class supplies params to control the creation of an event bus ID.
 Only one of the members ticket, userId and channelId should be set.
- 
Field SummaryFields Modifier and Type Field Description protected java.lang.StringchannelIdCreate an event bus ID based on this string.protected booleannoForwardToOtherIxsDo not open this bus on other Indexservers.protected java.lang.StringticketCreate event bus ID based on this ticket.protected java.lang.StringuserIdGet the event bus ID for this user.
- 
Constructor SummaryConstructors Constructor Description EventBusParams()
- 
Method SummaryModifier and Type Method Description java.lang.StringgetChannelId()java.lang.StringgetTicket()java.lang.StringgetUserId()booleanisNoForwardToOtherIxs()voidsetChannelId(java.lang.String channelId)voidsetNoForwardToOtherIxs(boolean noForwardToOtherIxs)voidsetTicket(java.lang.String v)voidsetUserId(java.lang.String v)java.lang.StringtoString()
- 
Field Details- 
ticketprotected java.lang.String ticketCreate event bus ID based on this ticket.
- 
userIdprotected java.lang.String userIdGet the event bus ID for this user. A numeric ID, GUID or user name can be specified. The returned bus ID is computed as EventBusC.BUSID_USER + uid, where uid is the numeric user ID.
- 
channelIdprotected java.lang.String channelIdCreate an event bus ID based on this string. An arbitary string can be supplied.
- 
noForwardToOtherIxsprotected boolean noForwardToOtherIxsDo not open this bus on other Indexservers. In load balancing environments, event busses are opened on each Indexserver by default. Set this option to true to open this event bus only on the currently attached Indexserver.- Since:
- 8.00.032.011
 
 
- 
- 
Constructor Details- 
EventBusParamspublic EventBusParams()
 
- 
- 
Method Details- 
getTicketpublic java.lang.String getTicket()
- 
setTicketpublic void setTicket(java.lang.String v)
- 
getUserIdpublic java.lang.String getUserId()
- 
setUserIdpublic void setUserId(java.lang.String v)
- 
getChannelIdpublic java.lang.String getChannelId()
- 
setChannelIdpublic void setChannelId(java.lang.String channelId)
- 
isNoForwardToOtherIxspublic boolean isNoForwardToOtherIxs()
- 
setNoForwardToOtherIxspublic void setNoForwardToOtherIxs(boolean noForwardToOtherIxs)
- 
toStringpublic java.lang.String toString()- Overrides:
- toStringin class- java.lang.Object
 
 
-