package org.compass.core.test.property.managedid.compressed; /** * @author kimchy */ public class A { int id; String value; A() { } A(int id, String value) { this.id = id; this.value = value; } }