]> source.dussan.org Git - archiva.git/blob
371e7d488f8bed11223297d76970699fa3837f01
[archiva.git] /
1 package org.apache.archiva.admin.model.beans;
2 /*
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  */
20
21 import javax.xml.bind.annotation.XmlRootElement;
22 import java.io.Serializable;
23 import java.util.ArrayList;
24 import java.util.List;
25
26 /**
27  * @author Olivier Lamy
28  * @since 1.4-M1
29  */
30 @XmlRootElement(name = "repositoryGroup")
31 public class RepositoryGroup
32     implements Serializable
33 {
34     /**
35      * repository group Id
36      */
37     private String id;
38
39     /**
40      * repositories ids
41      */
42     private List<String> repositories;
43
44     /**
45      * The path of the merged index.
46      */
47     private String mergedIndexPath = "/.indexer";
48
49     public RepositoryGroup()
50     {
51         // no op
52     }
53
54     public RepositoryGroup( String id, List<String> repositories )
55     {
56         this.id = id;
57         this.repositories = repositories;
58     }
59
60     /**
61      * Method addRepository.
62      *
63      * @param string
64      */
65     public void addRepository( String string )
66     {
67         getRepositories().add( string );
68     }
69
70     /**
71      * Get the id of the repository group.
72      *
73      * @return String
74      */
75     public String getId()
76     {
77         return this.id;
78     }
79
80     /**
81      * Method getRepositories.
82      *
83      * @return List
84      */
85     public List<String> getRepositories()
86     {
87         if ( this.repositories == null )
88         {
89             this.repositories = new ArrayList<String>( 0 );
90         }
91
92         return this.repositories;
93     }
94
95     /**
96      * Method removeRepository.
97      *
98      * @param string
99      */
100     public void removeRepository( String string )
101     {
102         getRepositories().remove( string );
103     }
104
105     /**
106      * Set the id of the repository group.
107      *
108      * @param id
109      */
110     public void setId( String id )
111     {
112         this.id = id;
113     }
114
115     /**
116      * Set the list of repository ids under the group.
117      *
118      * @param repositories
119      */
120     public void setRepositories( List<String> repositories )
121     {
122         this.repositories = repositories;
123     }
124
125     public String getMergedIndexPath()
126     {
127         return mergedIndexPath;
128     }
129
130     public void setMergedIndexPath( String mergedIndexPath )
131     {
132         this.mergedIndexPath = mergedIndexPath;
133     }
134
135     public RepositoryGroup mergedIndexPath( String mergedIndexPath )
136     {
137         this.mergedIndexPath = mergedIndexPath;
138         return this;
139     }
140
141     public boolean equals( Object other )
142     {
143         if ( this == other )
144         {
145             return true;
146         }
147
148         if ( !( other instanceof RepositoryGroup ) )
149         {
150             return false;
151         }
152
153         RepositoryGroup that = (RepositoryGroup) other;
154         boolean result = true;
155         result = result && ( getId() == null ? that.getId() == null : getId().equals( that.getId() ) );
156         return result;
157     }
158
159     public int hashCode()
160     {
161         int result = 17;
162         result = 37 * result + ( id != null ? id.hashCode() : 0 );
163         return result;
164     }
165
166     @Override
167     public String toString()
168     {
169         final StringBuilder sb = new StringBuilder();
170         sb.append( "RepositoryGroup" );
171         sb.append( "{id='" ).append( id ).append( '\'' );
172         sb.append( ", repositories=" ).append( repositories );
173         sb.append( '}' );
174         return sb.toString();
175     }
176 }