/* * Hibernate OGM, Domain model persistence for NoSQL datastores * * License: GNU Lesser General Public License (LGPL), version 2.1 or later * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. */ package org.hibernate.ogm.compensation.operation.impl; import org.hibernate.ogm.compensation.operation.CreateTupleWithKey; import org.hibernate.ogm.compensation.operation.GridDialectOperation; import org.hibernate.ogm.compensation.operation.OperationType; import org.hibernate.ogm.model.key.spi.EntityKey; /** * @author Gunnar Morling * */ public class CreateTupleWithKeyImpl implements CreateTupleWithKey { private final EntityKey entityKey; public CreateTupleWithKeyImpl(EntityKey entityKey) { this.entityKey = entityKey; } @Override public EntityKey getEntityKey() { return entityKey; } @Override public <T extends GridDialectOperation> T as(Class<T> type) { if ( CreateTupleWithKey.class.isAssignableFrom( type ) ) { return type.cast( this ); } throw new IllegalArgumentException( "Unexpected type: " + type ); } @Override public OperationType getType() { return OperationType.CREATE_TUPLE_WITH_KEY; } @Override public String toString() { return "CreateTupleWithKeyImpl [entityKey=" + entityKey + "]"; } }