/* * 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.datastore.mongodb.type.impl; import org.bson.types.ObjectId; import org.hibernate.MappingException; import org.hibernate.engine.spi.Mapping; import org.hibernate.ogm.type.descriptor.impl.WrappedGridTypeDescriptor; import org.hibernate.ogm.type.impl.AbstractGenericBasicType; /** * Persists Strings as {@link ObjectId}s in MongoDB: * * @author Gunnar Morling * */ public class StringAsObjectIdGridType extends AbstractGenericBasicType<String> { public static final StringAsObjectIdGridType INSTANCE = new StringAsObjectIdGridType(); public StringAsObjectIdGridType() { super( WrappedGridTypeDescriptor.INSTANCE, StringAsObjectIdTypeDescriptor.INSTANCE ); } @Override public String getName() { return "string_objectid"; } @Override public int getColumnSpan(Mapping mapping) throws MappingException { return 1; } }