Class VisitorGroup

java.lang.Object
com.nettoolkit.gatekeeper.VisitorGroup
All Implemented Interfaces:
Serializable

public class VisitorGroup extends Object implements Serializable
VisitorGroup is a model for classifying incoming visits based on information about the visitor. Information used by visitor groups include IP address, user agent, user ID, and so on.
See Also:
  • Constructor Details

  • Method Details

    • getId

      public UUID getId()
      Get visitor group ID.
      Returns:
      visitor group ID
    • getName

      public String getName()
      Get visitor group name.
      Returns:
      visitor group name
    • getType

      public String getType()
      Get visitor group type. The visitor type represents the kind of visitors contained by this group. Options include "IP", "ORGANIZATION", "TAG", "COUNTRY", and "USER_ID". For a complete list, see visitor types documentation.
      Returns:
      visitor type
    • getOperator

      public String getOperator()
      Get operator for USER_ID type visitor groups. Visitor groups of type USER_ID include an operator to determine how to match visitors. Options include "LESS", "GREATER", "BETWEEN", and "IN".