Example usage for org.springframework.data.mapping Association Association

List of usage examples for org.springframework.data.mapping Association Association

Introduction

In this page you can find the example usage for org.springframework.data.mapping Association Association.

Prototype

public Association(P inverse, @Nullable P obverse) 

Source Link

Document

Creates a new Association between the two given PersistentProperty s.

Usage

From source file:org.springdata.ehcache.mapping.BasicEhcachePersistentProperty.java

@Override
protected Association<EhcachePersistentProperty> createAssociation() {
    return new Association<EhcachePersistentProperty>(this, null);
}

From source file:org.develspot.data.orientdb.mapping.BasicOrientPersistentProperty.java

@Override
protected Association<OrientPersistentProperty> createAssociation() {
    return new Association<OrientPersistentProperty>(this, null);
}

From source file:com.couchbase.spring.core.mapping.BasicCouchbasePersistentProperty.java

/**
 * Creates a new Association./* ww  w .  ja  v a2  s  .c  o m*/
 */
@Override
protected Association<CouchbasePersistentProperty> createAssociation() {
    return new Association<CouchbasePersistentProperty>(this, null);
}

From source file:io.twipple.springframework.data.clusterpoint.mapping.BasicClusterpointPersistentProperty.java

@Override
@NotNull// w  w  w  .  jav a 2s  . c o m
protected Association<ClusterpointPersistentProperty> createAssociation() {
    return new Association<ClusterpointPersistentProperty>(this, null);
}

From source file:com._4dconcept.springframework.data.marklogic.core.mapping.BasicMarklogicPersistentProperty.java

@Override
protected Association<MarklogicPersistentProperty> createAssociation() {
    return new Association<>(this, null);
}

From source file:org.socialsignin.spring.data.dynamodb.mapping.DynamoDBPersistentPropertyImpl.java

@Override
protected Association<DynamoDBPersistentProperty> createAssociation() {
    return new Association<DynamoDBPersistentProperty>(this, null);
}

From source file:com.joyveb.dbpimpl.cass.prepare.mapping.BasicCassandraPersistentProperty.java

@Override
protected Association<CassandraPersistentProperty> createAssociation() {
    return new Association<CassandraPersistentProperty>(this, null);
}

From source file:org.springframework.data.mongodb.core.mapping.BasicMongoPersistentProperty.java

@Override
protected Association<MongoPersistentProperty> createAssociation() {
    return new Association<MongoPersistentProperty>(this, null);
}