]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.server.jcr/src/test/java/org/argeo/jcr/SimpleObject.java
cdc32fc991b1f6c7782dcc3715a100fb4d3e6bfe
[lgpl/argeo-commons.git] / org.argeo.server.jcr / src / test / java / org / argeo / jcr / SimpleObject.java
1 /*
2 * Copyright (C) 2007-2012 Argeo GmbH
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.argeo.jcr;
17
18 import java.util.UUID;
19
20 public class SimpleObject {
21 private String string;
22 private String uuid = UUID.randomUUID().toString();
23 private Integer integer;
24 private OtherObject otherObject;
25 private OtherObject anotherObject;
26
27 public String getString() {
28 return string;
29 }
30
31 public void setString(String sting) {
32 this.string = sting;
33 }
34
35 public Integer getInteger() {
36 return integer;
37 }
38
39 public void setInteger(Integer integer) {
40 this.integer = integer;
41 }
42
43 public OtherObject getOtherObject() {
44 return otherObject;
45 }
46
47 public void setOtherObject(OtherObject otherObject) {
48 this.otherObject = otherObject;
49 }
50
51 public OtherObject getAnotherObject() {
52 return anotherObject;
53 }
54
55 public void setAnotherObject(OtherObject anotherObject) {
56 this.anotherObject = anotherObject;
57 }
58
59 @Override
60 public boolean equals(Object obj) {
61 return string.equals(((SimpleObject) obj).string);
62 }
63
64 @Override
65 public int hashCode() {
66 return string.hashCode();
67 }
68
69 public void setUuid(String uuid) {
70 this.uuid = uuid;
71 }
72
73 public String getUuid() {
74 return uuid;
75 }
76
77 }