]> source.dussan.org Git - archiva.git/blob
047724dbeb6f04cb42f62b67ff65b969b83521c3
[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     /**
50      * The TTL (time to live) of the repo group's merged index.
51      */
52     private int mergedIndexTtl = 30;
53
54     public RepositoryGroup()
55     {
56         // no op
57     }
58
59     public RepositoryGroup( String id, List<String> repositories )
60     {
61         this.id = id;
62         this.repositories = repositories;
63     }
64
65     /**
66      * Method addRepository.
67      *
68      * @param string
69      */
70     public void addRepository( String string )
71     {
72         getRepositories().add( string );
73     }
74
75     /**
76      * Get the id of the repository group.
77      *
78      * @return String
79      */
80     public String getId()
81     {
82         return this.id;
83     }
84
85     /**
86      * Method getRepositories.
87      *
88      * @return List
89      */
90     public List<String> getRepositories()
91     {
92         if ( this.repositories == null )
93         {
94             this.repositories = new ArrayList<String>( 0 );
95         }
96
97         return this.repositories;
98     }
99
100     /**
101      * Method removeRepository.
102      *
103      * @param string
104      */
105     public void removeRepository( String string )
106     {
107         getRepositories().remove( string );
108     }
109
110     /**
111      * Set the id of the repository group.
112      *
113      * @param id
114      */
115     public void setId( String id )
116     {
117         this.id = id;
118     }
119
120     /**
121      * Set the list of repository ids under the group.
122      *
123      * @param repositories
124      */
125     public void setRepositories( List<String> repositories )
126     {
127         this.repositories = repositories;
128     }
129
130     public String getMergedIndexPath()
131     {
132         return mergedIndexPath;
133     }
134
135     public void setMergedIndexPath( String mergedIndexPath )
136     {
137         this.mergedIndexPath = mergedIndexPath;
138     }
139
140     public int getMergedIndexTtl() {
141         return mergedIndexTtl;
142     }
143
144     /**
145      * Set the TTL of the repo group's merged index.
146      *
147      * @param mergedIndexTtl
148      */
149     public void setMergedIndexTtl(int mergedIndexTtl) {
150         this.mergedIndexTtl = mergedIndexTtl;
151     }
152
153     public RepositoryGroup mergedIndexPath( String mergedIndexPath ) {
154         this.mergedIndexPath = mergedIndexPath;
155         return this;
156     }
157
158     public RepositoryGroup mergedIndexTtl( int mergedIndexTtl ) {
159         this.mergedIndexTtl = mergedIndexTtl;
160         return this;
161     }
162
163     public boolean equals( Object other )
164     {
165         if ( this == other )
166         {
167             return true;
168         }
169
170         if ( !( other instanceof RepositoryGroup ) )
171         {
172             return false;
173         }
174
175         RepositoryGroup that = (RepositoryGroup) other;
176         boolean result = true;
177         result = result && ( getId() == null ? that.getId() == null : getId().equals( that.getId() ) );
178         return result;
179     }
180
181     public int hashCode()
182     {
183         int result = 17;
184         result = 37 * result + ( id != null ? id.hashCode() : 0 );
185         return result;
186     }
187
188     @Override
189     public String toString()
190     {
191         final StringBuilder sb = new StringBuilder();
192         sb.append( "RepositoryGroup" );
193         sb.append( "{id='" ).append( id ).append( '\'' );
194         sb.append( ", repositories=" ).append( repositories );
195         sb.append( '}' );
196         return sb.toString();
197     }
198 }