Change nexus values to properties
[appc.git] / app-c / appc / appc-common / src / test / java / org / openecomp / appc / pool / Element.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : APP-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                                              reserved.
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  */
21
22
23
24 package org.openecomp.appc.pool;
25
26 import java.io.IOException;
27
28 public class Element implements Testable {
29     private boolean closed;
30     private Integer id;
31
32     public Element(int id) {
33         this.id = Integer.valueOf(id);
34         closed = false;
35     }
36
37     @Override
38     public boolean equals(Object obj) {
39         boolean result = false;
40         if (obj instanceof Element) {
41             Element other = (Element) obj;
42             result = this.id.equals(other.id);
43         }
44
45         return result;
46     }
47
48     @Override
49     public int hashCode() {
50         return id.hashCode();
51     }
52
53     /**
54      * @see java.io.Closeable#close()
55      */
56     @Override
57     public void close() throws IOException {
58         closed = true;
59     }
60
61     @Override
62     public Boolean isClosed() {
63         return Boolean.valueOf(closed);
64     }
65
66     @Override
67     public String toString() {
68         return Integer.toString(id);
69     }
70
71     @Override
72     public Integer getId() {
73         return id;
74     }
75 }