1 package ist.coach.coachEmfCommon; 2 3 public class CreateBindingInfo { 4 public short deletePolicy; 5 public String objectKind; 6 7 CreateBindingInfo() { 8 objectKind = new String (); 9 deletePolicy = 0; 10 } 11 12 CreateBindingInfo(short deletePolicy, String objectKind) { 13 this.deletePolicy = deletePolicy; 14 this.objectKind = objectKind; 15 } 16 } 17 18 | Popular Tags |