Package com.netflix.astyanax.entitystore.SampleEntity

Examples of com.netflix.astyanax.entitystore.SampleEntity.Foo


    entity.setUuid(TimeUUIDUtils.getUniqueTimeUUIDinMicros());
    entity.setStringSet(ImmutableSet.of("A""B"));
    entity.setStringMap(ImmutableMap.of("KA", "VA", "KB", "VB"));
    entity.setLongSet(ImmutableSet.of(123L, 456L));
    entity.setLongMap(ImmutableMap.of(1L, 11L, 2L, 22L));
    Foo foo = new Foo(prng.nextInt(), RandomStringUtils.randomAlphanumeric(4));
    entity.setFoo(foo);
    BarBar barbar = new BarBar();
    barbar.i = prng.nextInt();
    barbar.s = RandomStringUtils.randomAlphanumeric(4);
    Bar bar = new Bar();
View Full Code Here

TOP

Related Classes of com.netflix.astyanax.entitystore.SampleEntity.Foo

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.