package com.vci.client.workflow.editor.ui;
|
|
import java.io.Serializable;
|
|
public class PropertyObject implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
private String property;
|
private String value;
|
|
public PropertyObject() {
|
}
|
|
public PropertyObject(String property, String value) {
|
this.property = property;
|
this.value = value;
|
}
|
|
public String getProperty() {
|
return property;
|
}
|
|
public void setProperty(String property) {
|
this.property = property;
|
}
|
|
public String getValue() {
|
return value;
|
}
|
|
public void setValue(String value) {
|
this.value = value;
|
}
|
|
@Override
|
public String toString() {
|
return value;
|
}
|
}
|