Package org.hibernate.ogm.datastore.mongodb.options.impl

Examples of org.hibernate.ogm.datastore.mongodb.options.impl.AssociationDocumentStorageOption


  }

  @Override
  public MongoDBPropertyContext associationDocumentStorage(AssociationDocumentType associationDocumentStorage) {
    Contracts.assertParameterNotNull( associationDocumentStorage, "associationDocumentStorage" );
    addPropertyOption( new AssociationDocumentStorageOption(), associationDocumentStorage );
    return this;
  }
View Full Code Here


  }

  @Override
  public MongoDBGlobalContext associationDocumentStorage(AssociationDocumentType associationDocumentStorage) {
    Contracts.assertParameterNotNull( associationDocumentStorage, "associationDocumentStorage" );
    addGlobalOption( new AssociationDocumentStorageOption(), associationDocumentStorage );
    return this;
  }
View Full Code Here

  static class AssociationDocumentStorageConverter implements AnnotationConverter<AssociationDocumentStorage> {

    @Override
    public OptionValuePair<?> convert(AssociationDocumentStorage annotation) {
      return OptionValuePair.getInstance( new AssociationDocumentStorageOption(), annotation.value() );
    }
View Full Code Here

    return this;
  }

  @Override
  public MongoDBPropertyContext associationDocumentStorage(AssociationDocumentType associationDocumentStorage) {
    addPropertyOption( new AssociationDocumentStorageOption(), associationDocumentStorage );
    return this;
  }
View Full Code Here

    return this;
  }

  @Override
  public MongoDBGlobalContext associationDocumentStorage(AssociationDocumentType associationDocumentStorage) {
    addGlobalOption( new AssociationDocumentStorageOption(), associationDocumentStorage );
    return this;
  }
View Full Code Here

    return this;
  }

  @Override
  public MongoDBEntityContext associationDocumentStorage(AssociationDocumentType associationDocumentStorage) {
    addEntityOption( new AssociationDocumentStorageOption(), associationDocumentStorage );
    return this;
  }
View Full Code Here

TOP

Related Classes of org.hibernate.ogm.datastore.mongodb.options.impl.AssociationDocumentStorageOption

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.