Package google.registry.model.index
Class EppResourceIndex
- java.lang.Object
-
- google.registry.model.ImmutableObject
-
- google.registry.model.BackupGroupRoot
-
- google.registry.model.index.EppResourceIndex
-
- All Implemented Interfaces:
DatastoreEntity
,DatastoreOnlyEntity
,UnsafeSerializable
,java.io.Serializable
,java.lang.Cloneable
public class EppResourceIndex extends BackupGroupRoot implements DatastoreOnlyEntity
An index that allows for quick enumeration of all EppResource entities (e.g. via map reduce).- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class google.registry.model.ImmutableObject
ImmutableObject.DoNotCompare, ImmutableObject.DoNotHydrate, ImmutableObject.EmptySetToNull, ImmutableObject.IgnoredInDiffableMap, ImmutableObject.Insignificant
-
-
Field Summary
-
Fields inherited from class google.registry.model.ImmutableObject
hashCode
-
-
Constructor Summary
Constructors Constructor Description EppResourceIndex()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <T extends EppResource>
EppResourceIndexcreate(com.googlecode.objectify.Key<EppResourceIndexBucket> bucket, com.googlecode.objectify.Key<T> resourceKey)
static <T extends EppResource>
EppResourceIndexcreate(com.googlecode.objectify.Key<T> resourceKey)
com.googlecode.objectify.Key<EppResourceIndexBucket>
getBucket()
java.lang.String
getId()
com.googlecode.objectify.Key<? extends EppResource>
getKey()
java.lang.String
getKind()
-
Methods inherited from class google.registry.model.BackupGroupRoot
copyUpdateTimestamp, getUpdateTimestamp, resetUpdateTimestamp, setUpdateTimestamp
-
Methods inherited from class google.registry.model.ImmutableObject
clone, cloneEmptyToNull, equals, getSignificantFields, hashCode, toDiffableFieldMap, toHydratedString, toString, toStringHelper
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface google.registry.model.replay.DatastoreEntity
beforeDatastoreSaveOnReplay
-
Methods inherited from interface google.registry.model.replay.DatastoreOnlyEntity
toSqlEntity
-
-
-
-
Method Detail
-
getId
public java.lang.String getId()
-
getKind
public java.lang.String getKind()
-
getKey
public com.googlecode.objectify.Key<? extends EppResource> getKey()
-
getBucket
public com.googlecode.objectify.Key<EppResourceIndexBucket> getBucket()
-
create
public static <T extends EppResource> EppResourceIndex create(com.googlecode.objectify.Key<EppResourceIndexBucket> bucket, com.googlecode.objectify.Key<T> resourceKey)
-
create
public static <T extends EppResource> EppResourceIndex create(com.googlecode.objectify.Key<T> resourceKey)
-
-