object VisibilityEvaluator

Evaluates visibilities against authorizations. Abstracted from Accumulo visibility code

Annotations
@deprecated
Deprecated

Replaced with org.apache.accumulo:accumulo-access

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. VisibilityEvaluator
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class VisibilityAnd(expressions: Seq[VisibilityExpression]) extends VisibilityExpression with Product with Serializable

    Boolean AND of visibilities

    Boolean AND of visibilities

    expressions

    visibilities

  2. case class VisibilityOr(expressions: Seq[VisibilityExpression]) extends VisibilityExpression with Product with Serializable

    Boolean OR of visibilities

    Boolean OR of visibilities

    expressions

    visibilities

  3. case class VisibilityValue(value: Array[Byte]) extends VisibilityExpression with Product with Serializable

    A specific visibility tag, which can only be seen by the equivalent authorization

    A specific visibility tag, which can only be seen by the equivalent authorization

    value

    visibility tag

  4. sealed trait VisibilityExpression extends AnyRef

    Parsed visibility that can be evaluated

    Parsed visibility that can be evaluated

    Annotations
    @deprecated
    Deprecated

    Replaced with org.apache.accumulo:accumulo-access

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  11. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  12. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  13. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. def parse(visibility: String, report: Boolean = false): VisibilityExpression

    Parses a visibility from a string.

    Parses a visibility from a string. Results are cached for repeated calls

    Per standard operator precedence, the binary & has higher precedence than |, i.e. user|admin&test is the same as user|(admin&test) and user&admin|test is the same as (user&admin)|test

    visibility

    visibility string, e.g. 'admin|user'

    report

    provide detailed reporting on errors, or not

    returns

    parsed visibility expression

    Annotations
    @throws( classOf[ParsingException] )
    Exceptions thrown

    org.parboiled.errors.ParsingException if visibility is not valid

  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  19. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. object VisibilityExpression
  21. object VisibilityNone extends VisibilityExpression with Product with Serializable

    No visibility restrictions, can be seen by anyone

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped