]> source.dussan.org Git - archiva.git/blob
30c9ce55ea49b8ba3b19ab05f412401edfdc8378
[archiva.git] /
1 package org.apache.archiva.metadata.repository.cassandra.model;
2
3 /*
4  * Licensed to the Apache Software Foundation (ASF) under one
5  * or more contributor license agreements.  See the NOTICE file
6  * distributed with this work for additional information
7  * regarding copyright ownership.  The ASF licenses this file
8  * to you under the Apache License, Version 2.0 (the
9  * "License"); you may not use this file except in compliance
10  * with the License.  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,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17  * KIND, either express or implied.  See the License for the
18  * specific language governing permissions and limitations
19  * under the License.
20  */
21
22 import java.io.Serializable;
23
24
25 /**
26  * @author Olivier Lamy
27  * @since 2.0.0
28  */
29 public class Repository
30     implements Serializable
31 {
32
33     private String id;
34
35     private String name;
36
37     public Repository()
38     {
39         // no op
40     }
41
42     public Repository( String id )
43     {
44         this.id = id;
45         this.name = id;
46     }
47
48     public String getId()
49     {
50         return id;
51     }
52
53     public void setId( String id )
54     {
55         this.id = id;
56     }
57
58     public String getName()
59     {
60         return name;
61     }
62
63     public void setName( String name )
64     {
65         this.name = name;
66     }
67
68     @Override
69     public boolean equals( Object o )
70     {
71         if ( this == o )
72         {
73             return true;
74         }
75         if ( o == null || getClass() != o.getClass() )
76         {
77             return false;
78         }
79
80         Repository that = (Repository) o;
81
82         if ( !id.equals( that.id ) )
83         {
84             return false;
85         }
86
87         return true;
88     }
89
90     @Override
91     public int hashCode()
92     {
93         return id.hashCode();
94     }
95
96
97     @Override
98     public String toString()
99     {
100         final StringBuilder sb = new StringBuilder( "Repository{" );
101         sb.append( "id='" ).append( id ).append( '\'' );
102         sb.append( ", name='" ).append( name ).append( '\'' );
103         //sb.append( ", namespaces=" ).append( namespaces );
104         sb.append( '}' );
105         return sb.toString();
106     }
107 }