2e63a9799901f2616e6fdc6fc1438c80adf570a1
[xmlrouter] / impl / src / main / java / org / wamblee / xmlrouter / impl / RobustIdentifiable.java
1 /*
2  * Copyright 2005-2011 the original author or authors.
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.wamblee.xmlrouter.impl;
17
18 import static org.wamblee.xmlrouter.impl.MessageUtil.*;
19
20 import java.util.logging.Level;
21 import java.util.logging.Logger;
22
23 import org.wamblee.xmlrouter.common.Id;
24 import org.wamblee.xmlrouter.config.ConfigException;
25 import org.wamblee.xmlrouter.config.Identifiable;
26
27 /**
28  * Robust identifiable provides robustness for identifiable objects. It adds
29  * equality based on the id.
30  * 
31  * @author Erik Brakkee
32  * 
33  * @param <T>
34  */
35 public class RobustIdentifiable<T> implements Identifiable<T> {
36     private static final Logger LOGGER = Logger
37         .getLogger(RobustIdentifiable.class.getName());
38
39     private Id<T> id;
40
41     public RobustIdentifiable(Identifiable<T> aIdentifiable) {
42         notNull("identifiable", aIdentifiable);
43         try {
44             id = aIdentifiable.getId();
45             if (id == null) {
46                 throwConfigException("identifiable.getId() returned null", null);
47             }
48         } catch (Exception e) {
49             throwConfigException("identifiable.getId() threw exception", e);
50         }
51
52     }
53
54     private void throwConfigException(String aMsg, Exception aException) {
55         LOGGER.log(Level.WARNING, aMsg, aException);
56         throw new ConfigException(aMsg);
57     }
58
59     @Override
60     public Id<T> getId() {
61         return id;
62     }
63
64     @Override
65     public int hashCode() {
66         return id.hashCode();
67     }
68
69     @Override
70     public boolean equals(Object aObj) {
71         if (aObj == null) {
72             return false;
73         }
74         if (!getClass().isInstance(aObj)) {
75             return false;
76         }
77         RobustIdentifiable<T> obj = (RobustIdentifiable<T>) aObj;
78         return id.equals(obj.getId());
79     }
80 }