721b7068a3b62876b2f726818f80bfdee5d1411a
[appc.git] / appc-common / src / test / java / org / openecomp / appc / pool / Element.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright (C) 2017 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22
23
24
25 package org.openecomp.appc.pool;
26
27 import java.io.IOException;
28
29 public class Element implements Testable {
30     private boolean closed;
31     private Integer id;
32
33     public Element(int id) {
34         this.id = Integer.valueOf(id);
35         closed = false;
36     }
37
38     @Override
39     public boolean equals(Object obj) {
40         boolean result = false;
41         if (obj instanceof Element) {
42             Element other = (Element) obj;
43             result = this.id.equals(other.id);
44         }
45
46         return result;
47     }
48
49     @Override
50     public int hashCode() {
51         return id.hashCode();
52     }
53
54     /**
55      * @see java.io.Closeable#close()
56      */
57     @Override
58     public void close() throws IOException {
59         closed = true;
60     }
61
62     @Override
63     public Boolean isClosed() {
64         return Boolean.valueOf(closed);
65     }
66
67     @Override
68     public String toString() {
69         return Integer.toString(id);
70     }
71
72     @Override
73     public Integer getId() {
74         return id;
75     }
76 }