Package io.datareplication.model
Class PageId
- java.lang.Object
-
- io.datareplication.model.PageId
-
public final class PageId extends java.lang.Object
The ID of a feed or snapshot page.Note that this is only used on the producer side; on the consumer side, the concept of a page ID doesn't exist any more and pages are identified only by their URL.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
int
hashCode()
static PageId
of(@NonNull java.lang.String value)
java.lang.String
toString()
@NonNull java.lang.String
value()
-
-
-
Method Detail
-
of
public static PageId of(@NonNull @NonNull java.lang.String value)
-
value
@NonNull public @NonNull java.lang.String value()
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-