1
2
3
4
5
6 package org.weda.store.impl;
7
8 import org.weda.store.ObjectSourceConstraint;
9
10 /**
11 *
12 * @author Mikhail Titov
13 */
14 public class ObjectSourceConstraintImpl implements ObjectSourceConstraint {
15 private String propertyName;
16 private Object value;
17
18 public String getPropertyName() {
19 return propertyName;
20 }
21
22 public void setPropertyName(String propertyName) {
23 this.propertyName = propertyName;
24 }
25
26 public Object getValue() {
27 return value;
28 }
29
30 public void setValue(Object value) {
31 this.value = value;
32 }
33 }