Class EventFilter

java.lang.Object
byps.BValueClass
de.elo.ix.client.ValueClass
de.elo.ix.client.EventFilter
All Implemented Interfaces:
Serializable

public class EventFilter extends ValueClass
This class describes an event filter.
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected long
    Event bus ID
    protected long
    First event param.
    protected String
    Second event param.
    protected long
    Event type.

    Fields inherited from class byps.BValueClass

    bypsClient, changedMembers, dbHelper, FLAG_SEALED, flags
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    long
     
    long
     
     
    long
     
    void
    setBusId(long busId)
     
    void
    setParam1(long param1)
     
    void
    setParam2(String param2)
     
    void
    setType(long eventType)
     
     

    Methods inherited from class byps.BValueClass

    getBypsClient, getChangedMembers, getDbHelper, isChangedMember, isSealed, seal, seal, setBypsClient, setChangedMember, setChangedMembers, setDbHelper

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Field Details

    • busId

      protected long busId
      Event bus ID
    • type

      protected long type
      Event type. This must be one of the predefined event types or an application defined type with a larger value than EventBusC.EVENT_TYPE_MAX_SYSTEM.
      See Also:
    • param1

      protected long param1
      First event param. Optional. Depends on event type.
      See Also:
    • param2

      protected String param2
      Second event param. Optional. Depends on event type.
      See Also:
  • Constructor Details

    • EventFilter

      public EventFilter()
  • Method Details

    • getBusId

      public long getBusId()
    • setBusId

      public void setBusId(long busId)
    • getType

      public long getType()
    • setType

      public void setType(long eventType)
    • getParam1

      public long getParam1()
    • setParam1

      public void setParam1(long param1)
    • getParam2

      public String getParam2()
    • setParam2

      public void setParam2(String param2)
    • toString

      public String toString()
      Overrides:
      toString in class Object