1 22 package org.jboss.metadata.web; 23 24 25 31 public class ReplicationConfig 32 { 33 protected String trigger; 34 protected String granularity; 35 protected String fieldBatchMode; 36 37 public String getTrigger() 38 { 39 return trigger; 40 } 41 42 public void setTrigger(String trigger) 43 { 44 this.trigger = (trigger == null ? null : trigger.toUpperCase()); 45 } 46 47 public String getGranularity() 48 { 49 return granularity; 50 } 51 52 public void setGranularity(String granularity) 53 { 54 this.granularity = (granularity == null ? null : granularity.toUpperCase()); 55 } 56 57 public String getFieldBatchMode() 58 { 59 return fieldBatchMode; 60 } 61 62 public void setFieldBatchMode(String fieldBatchMode) 63 { 64 this.fieldBatchMode = fieldBatchMode; 65 } 66 67 public String toString() 68 { 69 StringBuffer sb = new StringBuffer (100); 70 return sb.toString(); 71 } 72 } 73 | Popular Tags |