/* * Hibernate OGM, Domain model persistence for NoSQL datastores * * License: GNU Lesser General Public License (LGPL), version 2.1 or later * See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>. */ package org.hibernate.ogm.backendtck.batchfetching; import javax.persistence.Entity; import javax.persistence.Id; /** * @author Gunnar Morling */ @Entity public class Condominium { private String id; private int size; Condominium() { } public Condominium(String id, int size) { this.id = id; this.size = size; } @Id public String getId() { return id; } public void setId(String id) { this.id = id; } public int getSize() { return size; } public void setSize(int size) { this.size = size; } }