1 13 package info.magnolia.cms.gui.query; 14 15 18 public abstract class SearchQueryParameter extends AbstractExpressionImpl { 19 20 23 protected String name; 24 25 28 protected Object value; 29 30 33 protected String constraint; 34 35 40 public SearchQueryParameter(String name, Object value, String constraint) { 41 this.name = name; 42 this.value = value; 43 this.constraint = constraint; 44 } 45 46 50 public String getName() { 51 return name; 52 } 53 54 58 public void setName(String name) { 59 this.name = name; 60 } 61 62 66 public String getConstraint() { 67 return constraint; 68 } 69 70 74 public void setConstraint(String constraint) { 75 this.constraint = constraint; 76 } 77 78 } 79 | Popular Tags |