Package org.springframework.data.gemfire.repository.sample

Examples of org.springframework.data.gemfire.repository.sample.Address


  }

  @Test
  @SuppressWarnings("unchecked")
  public void usesRegisteredInstantiator() {
    Address address = new Address();
    address.zipCode = "01234";
    address.city = "London";

    Person person = new Person(1L, "Oliver", "Gierke");
    person.address = address;
View Full Code Here


  }

  @Test
  public void serializeAndDeserializeCorrectly() {

    Address address = new Address();
    address.zipCode = "01234";
    address.city = "London";

    Person person = new Person(1L, "Oliver", "Gierke");
    person.address = address;
View Full Code Here

  }
 
  @Test
  public void serializeAndDeserializeCorrectlyWithDataSerializable() {

    Address address = new Address();
    address.zipCode = "01234";
    address.city = "London";

    PersonWithDataSerializableProperty person = new PersonWithDataSerializableProperty(2L, "Oliver", "Gierke", new DataSerializableProperty("foo"));
    person.address = address;
View Full Code Here

TOP

Related Classes of org.springframework.data.gemfire.repository.sample.Address

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.