]> source.dussan.org Git - archiva.git/blob
db9f965d71f514faeafea169aba54c1766529c47
[archiva.git] /
1 package org.apache.archiva.admin.repository.remote;
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 org.apache.archiva.admin.repository.AbstractRepository;
23
24 import java.io.Serializable;
25
26 /**
27  * @author Olivier Lamy
28  * @since 1.4
29  */
30 public class RemoteRepository
31     extends AbstractRepository
32     implements Serializable
33 {
34
35     private String url;
36
37     private String userName;
38
39     private String password;
40
41     private int timeout = 60;
42
43     public RemoteRepository()
44     {
45         // no op
46     }
47
48     public RemoteRepository( String id, String name, String url, String layout )
49     {
50         super( id, name, layout );
51         this.url = url;
52     }
53
54     public RemoteRepository( String id, String name, String url, String layout, String userName, String password,
55                              int timeOut )
56     {
57         super( id, name, layout );
58         this.url = url;
59         this.userName = userName;
60         this.password = password;
61         this.timeout = timeOut;
62     }
63
64     public String getUrl()
65     {
66         return url;
67     }
68
69     public void setUrl( String url )
70     {
71         this.url = url;
72     }
73
74     public String getUserName()
75     {
76         return userName;
77     }
78
79     public void setUserName( String userName )
80     {
81         this.userName = userName;
82     }
83
84     public String getPassword()
85     {
86         return password;
87     }
88
89     public void setPassword( String password )
90     {
91         this.password = password;
92     }
93
94     public int getTimeout()
95     {
96         return timeout;
97     }
98
99     public void setTimeout( int timeout )
100     {
101         this.timeout = timeout;
102     }
103
104     @Override
105     public String toString()
106     {
107         final StringBuilder sb = new StringBuilder();
108         sb.append( "RemoteRepository" );
109         sb.append( "{url='" ).append( url ).append( '\'' );
110         sb.append( ", userName='" ).append( userName ).append( '\'' );
111         sb.append( ", password='" ).append( password ).append( '\'' );
112         sb.append( ", timeout=" ).append( timeout );
113         sb.append( '}' );
114         sb.append( super.toString() );
115         return sb.toString();
116     }
117
118
119 }