View Javadoc

1   /**
2    * Licensed to jclouds, Inc. (jclouds) under one or more
3    * contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  jclouds licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.jclouds.trmk.vcloud_0_8.compute.domain;
20  
21  import java.net.URI;
22  
23  /**
24   * 
25   * @author Adrian Cole
26   */
27  public class OrgAndName {
28     protected final URI org;
29     protected final String name;
30  
31     public OrgAndName(URI org, String name) {
32        this.org = org;
33        this.name = name;
34     }
35  
36     @Override
37     public int hashCode() {
38        final int prime = 31;
39        int result = 1;
40        result = prime * result + ((org == null) ? 0 : org.hashCode());
41        result = prime * result + ((name == null) ? 0 : name.hashCode());
42        return result;
43     }
44  
45     @Override
46     public boolean equals(Object obj) {
47        if (this == obj)
48           return true;
49        if (obj == null)
50           return false;
51        if (getClass() != obj.getClass())
52           return false;
53        OrgAndName other = (OrgAndName) obj;
54        if (org == null) {
55           if (other.org != null)
56              return false;
57        } else if (!org.equals(other.org))
58           return false;
59        if (name == null) {
60           if (other.name != null)
61              return false;
62        } else if (!name.equals(other.name))
63           return false;
64        return true;
65     }
66  
67     public URI getOrg() {
68        return org;
69     }
70  
71     public String getName() {
72        return name;
73     }
74  
75     @Override
76     public String toString() {
77        return "OrgTag [org=" + org + ", name=" + name + "]";
78     }
79  
80  }