]> git.argeo.org Git - lgpl/argeo-commons.git/blob - jcr/OtherObject.java
Prepare next development cycle
[lgpl/argeo-commons.git] / jcr / OtherObject.java
1 package org.argeo.jcr;
2
3 public class OtherObject {
4 private String key;
5 private Object value;
6
7 public String getKey() {
8 return key;
9 }
10
11 public void setKey(String key) {
12 this.key = key;
13 }
14
15 public Object getValue() {
16 return value;
17 }
18
19 public void setValue(Object value) {
20 this.value = value;
21 }
22 }