Spring Data Document

org.springframework.data.mongodb.core.mapping
Class BasicMongoPersistentEntity<T>

java.lang.Object
  extended by org.springframework.data.mapping.model.BasicPersistentEntity<T,MongoPersistentProperty>
      extended by org.springframework.data.mongodb.core.mapping.BasicMongoPersistentEntity<T>
All Implemented Interfaces:
Aware, ApplicationContextAware, org.springframework.data.mapping.model.MutablePersistentEntity<T,MongoPersistentProperty>, org.springframework.data.mapping.PersistentEntity<T,MongoPersistentProperty>, MongoPersistentEntity<T>

public class BasicMongoPersistentEntity<T>
extends org.springframework.data.mapping.model.BasicPersistentEntity<T,MongoPersistentProperty>
implements MongoPersistentEntity<T>, ApplicationContextAware

Mongo specific PersistentEntity implementation that adds Mongo specific meta-data such as the collection name and the like.

Author:
Jon Brisbin , Oliver Gierke

Constructor Summary
BasicMongoPersistentEntity(org.springframework.data.util.TypeInformation<T> typeInformation)
          Creates a new BasicMongoPersistentEntity with the given TypeInformation.
 
Method Summary
 String getCollection()
          Returns the collection the entity should be stored in.
 void setApplicationContext(ApplicationContext applicationContext)
           
 
Methods inherited from class org.springframework.data.mapping.model.BasicPersistentEntity
addAssociation, addPersistentProperty, doWithAssociations, doWithProperties, getIdProperty, getName, getPersistentProperty, getPreferredConstructor, getType, getTypeAlias, getTypeInformation, setIdProperty, verify
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.springframework.data.mapping.PersistentEntity
doWithAssociations, doWithProperties, getIdProperty, getName, getPersistentProperty, getPreferredConstructor, getType, getTypeAlias, getTypeInformation
 

Constructor Detail

BasicMongoPersistentEntity

public BasicMongoPersistentEntity(org.springframework.data.util.TypeInformation<T> typeInformation)
Creates a new BasicMongoPersistentEntity with the given TypeInformation. Will default the collection name to the entities simple type name.

Parameters:
typeInformation -
Method Detail

setApplicationContext

public void setApplicationContext(ApplicationContext applicationContext)
                           throws BeansException
Specified by:
setApplicationContext in interface ApplicationContextAware
Throws:
BeansException

getCollection

public String getCollection()
Returns the collection the entity should be stored in.

Specified by:
getCollection in interface MongoPersistentEntity<T>
Returns:

Spring Data Document

Copyright © 2012. All Rights Reserved.