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