1 18 19 package sync4j.syncclient.sps.common; 20 21 27 28 public class DataStoreMetadata { 29 30 32 private String name = null; 33 34 public String getName() { 35 return this.name; 36 } 37 38 public void setName(String name) { 39 this.name = name; 40 } 41 42 private String displayName = null; 43 44 public String getDisplayName() { 45 return this.displayName; 46 } 47 48 public void setDisplayName(String displayName) { 49 this.displayName = displayName; 50 } 51 52 private String [] syncModes; 53 54 public String [] getSyncModes() { 55 return this.syncModes; 56 } 57 58 public void setSyncModes(String [] syncModes) { 59 this.syncModes = syncModes; 60 } 61 62 private String defaultSync; 63 64 public String getDefaultSync() { 65 return this.defaultSync; 66 } 67 68 public void setDefaultSync(String defaultSync) { 69 this.defaultSync = defaultSync; 70 } 71 72 76 boolean softSort = false; 77 78 public boolean isSoftSort() { 79 return this.softSort; 80 } 81 82 public void setSoftSort(boolean softSort) { 83 this.softSort = softSort; 84 } 85 86 private String storeVolume; 87 88 public String getStoreVolume() { 89 return this.storeVolume; 90 } 91 92 public void setStoreVolume(String storeVolume) { 93 this.storeVolume = storeVolume; 94 } 95 96 98 public DataStoreMetadata (String name) { 99 this.name = name; 100 } 101 102 104 109 public String toString() { 110 return getDisplayName(); 111 } 112 113 115 } | Popular Tags |