Packages

case class Group(name: String, description: String = "", roles: Seq[Role] = Seq(), ldapGroupReference: Option[String] = None) extends Product with Serializable

Defines a set of roles that may be inherited by users.

name

the groups' name

description

the group's description

roles

any roles associated with the group

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Group
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Group(name: String, description: String = "", roles: Seq[Role] = Seq(), ldapGroupReference: Option[String] = None)

    name

    the groups' name

    description

    the group's description

    roles

    any roles associated with the group

Value Members

  1. def description(description: String): Group

    Creates a copy of this Group with a new description.

  2. val description: String
  3. def ldapGroupReference(ldapGroupReference: String): Group

    Creates a copy of this Group with a new ldapGroupReference.

  4. val ldapGroupReference: Option[String]
  5. def name(name: String): Group

    Creates a copy of this Group with a new name.

  6. val name: String
  7. def productElementNames: Iterator[String]
    Definition Classes
    Product
  8. def productIterator: Iterator[Any]
    Definition Classes
    Product
  9. def roles(roles: Role*): Group

    Creates a copy of this Group with a new name.

  10. val roles: Seq[Role]