]> source.dussan.org Git - archiva.git/blob
0e297f508dc56edf1ea3e45732330e4df76fd112
[archiva.git] /
1 package org.apache.archiva.proxy.common;
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 org.apache.archiva.admin.model.beans.NetworkProxy;
22
23 import java.util.HashMap;
24 import java.util.Map;
25
26 /**
27  * @author Olivier Lamy
28  * @since 1.4-M4
29  */
30 public class WagonFactoryRequest
31 {
32     /**
33      * the protocol to find the Wagon for, which must be prefixed with <code>wagon#</code>, for example
34      * <code>wagon#http</code>. <b>to have a wagon supporting ntlm add -ntlm</b>
35      */
36     private String protocol;
37
38     private Map<String, String> headers = new HashMap<>();
39
40     private String userAgent = "Java-Archiva";
41
42     private NetworkProxy networkProxy;
43
44     public WagonFactoryRequest()
45     {
46         // no op
47     }
48
49     public WagonFactoryRequest( String protocol, Map<String, String> headers )
50     {
51         this.protocol = protocol;
52         this.headers = headers;
53     }
54
55     public String getProtocol()
56     {
57         return protocol;
58     }
59
60     public void setProtocol( String protocol )
61     {
62         this.protocol = protocol;
63     }
64
65     public WagonFactoryRequest protocol( String protocol )
66     {
67         this.protocol = protocol;
68         return this;
69     }
70
71     public Map<String, String> getHeaders()
72     {
73         if ( this.headers == null )
74         {
75             this.headers = new HashMap<>();
76         }
77         return headers;
78     }
79
80     public void setHeaders( Map<String, String> headers )
81     {
82         this.headers = headers;
83     }
84
85     public WagonFactoryRequest headers( Map<String, String> headers )
86     {
87         this.headers = headers;
88         return this;
89     }
90
91     public String getUserAgent()
92     {
93         return userAgent;
94     }
95
96     public void setUserAgent( String userAgent )
97     {
98         this.userAgent = userAgent;
99     }
100
101     public WagonFactoryRequest userAgent( String userAgent )
102     {
103         this.userAgent = userAgent;
104         return this;
105     }
106
107     public NetworkProxy getNetworkProxy()
108     {
109         return networkProxy;
110     }
111
112     public void setNetworkProxy( NetworkProxy networkProxy )
113     {
114         this.networkProxy = networkProxy;
115     }
116
117     public WagonFactoryRequest networkProxy( NetworkProxy networkProxy )
118     {
119         this.networkProxy = networkProxy;
120         return this;
121     }
122
123     @Override
124     public boolean equals( Object o )
125     {
126         if ( this == o )
127         {
128             return true;
129         }
130         if ( !( o instanceof WagonFactoryRequest ) )
131         {
132             return false;
133         }
134
135         WagonFactoryRequest that = (WagonFactoryRequest) o;
136
137         if ( protocol != null ? !protocol.equals( that.protocol ) : that.protocol != null )
138         {
139             return false;
140         }
141         if ( userAgent != null ? !userAgent.equals( that.userAgent ) : that.userAgent != null )
142         {
143             return false;
144         }
145
146         return true;
147     }
148
149     @Override
150     public int hashCode()
151     {
152         int result = protocol != null ? protocol.hashCode() : 0;
153         result = 31 * result + ( userAgent != null ? userAgent.hashCode() : 0 );
154         return result;
155     }
156
157     @Override
158     public String toString()
159     {
160         return "WagonFactoryRequest{" +
161             "protocol='" + protocol + '\'' +
162             ", headers=" + headers +
163             ", userAgent='" + userAgent + '\'' +
164             ", networkProxy=" + networkProxy +
165             '}';
166     }
167 }