1 18 19 package sync4j.framework.core.dm.ddf; 20 21 22 29 public class Connection implements java.io.Serializable { 30 31 public static final String CON_NAP = "/NAP"; 33 public static final String CON_PX = "/PX"; 34 public static final String CON_EXT = "/Ext"; 35 36 37 private NAP nap; 39 private PX px; 40 private Ext ext; 41 42 43 48 public Connection() {} 49 50 51 57 public Connection(final Ext ext, 58 final NAP nap, 59 final PX px ) { 60 this.nap = nap; 61 this.px = px; 62 this.ext = ext; 63 } 64 65 66 68 73 public NAP getNap() { 74 return nap; 75 } 76 77 82 public void setNap(NAP nap) { 83 this.nap = nap; 84 } 85 86 91 public PX getPX() { 92 return px; 93 } 94 95 100 public void setPX(PX px) { 101 this.px = px; 102 } 103 104 109 public Ext getExt() { 110 return ext; 111 } 112 113 118 public void setExt(Ext ext) { 119 this.ext = ext; 120 } 121 122 } | Popular Tags |