Package info.archinnov.achilles.test.integration.entity.ClusteredEntityWithReverseClustering

Examples of info.archinnov.achilles.test.integration.entity.ClusteredEntityWithReverseClustering.ClusteredKey


      insertClusteredEntity(partitionKey, i, namePrefix + i, clusteredValuePrefix + i);
    }
  }

  private void insertClusteredEntity(Long partitionKey, int count, String name, String clusteredValue) {
    ClusteredKey embeddedId = new ClusteredKey(partitionKey, count, name);
    ClusteredEntityWithReverseClustering entity = new ClusteredEntityWithReverseClustering(embeddedId,
        clusteredValue);
    manager.insert(entity);
  }
View Full Code Here

TOP

Related Classes of info.archinnov.achilles.test.integration.entity.ClusteredEntityWithReverseClustering.ClusteredKey

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.