com.snowplowanalytics.iglu.client.repositories

RepositoryRef

trait RepositoryRef extends AnyRef

Common behavior for all RepositoryRef classes.

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. RepositoryRef
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract val classPriority: Int

    All repositories with a search priority of 1 will be checked before any repository with a search priority of 2.

  2. abstract val config: RepositoryRefConfig

    Our configuration for this RepositoryRef

  3. abstract val descriptor: String

    Human-readable descriptor for this type of repository ref.

  4. abstract def lookupSchema(schemaKey: SchemaKey): Validated[Option[JsonNode]]

    Abstract method.

    Abstract method. Provide a concrete implementation for how to lookup a schema in this type of repository.

    schemaKey

    The SchemaKey uniquely identifying the schema in Iglu

    returns

    a Validation boxing either the Schema's JsonNode on Success, or an error String on Failure

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  17. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  18. def toString(): String

    Definition Classes
    AnyRef → Any
  19. def unsafeLookupSchema(schemaKey: SchemaKey): JsonNode

    Retrieves an IgluSchema from the Iglu Repo as a JsonNode.

    Retrieves an IgluSchema from the Iglu Repo as a JsonNode. Unsafe - only use when you know the schema is available locally.

    schemaKey

    The SchemaKey uniquely identifies the schema in Iglu

    returns

    the JsonNode representing this schema

  20. def vendorMatched(schemaKey: SchemaKey): Boolean

    Helper to check if this repository should take priority because of a vendor prefix match.

    Helper to check if this repository should take priority because of a vendor prefix match. Returns true if we matched our schema's vendor in the list of vendor prefixes.

    schemaKey

    The SchemaKey uniquely identifying the schema in Iglu. We will use the vendor within the SchemaKey to match against our prefixes

    returns

    whether this is a priority lookup or not

  21. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped