]> source.dussan.org Git - archiva.git/blob
9c5223c7a51181e93fc4b90a9f8f5777e7f8f308
[archiva.git] /
1 package org.apache.archiva.scheduler.indexing;
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 import org.apache.archiva.admin.model.remote.RemoteRepositoryAdmin;
23 import org.apache.archiva.proxy.common.WagonFactory;
24 import org.apache.archiva.repository.RemoteRepository;
25 import org.apache.maven.index.packer.IndexPacker;
26 import org.apache.maven.index.updater.IndexUpdater;
27
28 /**
29  * @author Olivier Lamy
30  * @since 1.4-M1
31  */
32 public class DownloadRemoteIndexTaskRequest
33 {
34     private RemoteRepository remoteRepository;
35
36     private WagonFactory wagonFactory;
37
38     private NetworkProxy networkProxy;
39
40     private boolean fullDownload;
41
42     private IndexUpdater indexUpdater;
43
44     private IndexPacker indexPacker;
45
46     public DownloadRemoteIndexTaskRequest()
47     {
48         // no op
49     }
50
51     public RemoteRepository getRemoteRepository()
52     {
53         return remoteRepository;
54     }
55
56     public DownloadRemoteIndexTaskRequest setRemoteRepository( RemoteRepository remoteRepository )
57     {
58         this.remoteRepository = remoteRepository;
59         return this;
60     }
61
62
63     public WagonFactory getWagonFactory()
64     {
65         return wagonFactory;
66     }
67
68     public DownloadRemoteIndexTaskRequest setWagonFactory( WagonFactory wagonFactory )
69     {
70         this.wagonFactory = wagonFactory;
71         return this;
72     }
73
74     public NetworkProxy getNetworkProxy()
75     {
76         return networkProxy;
77     }
78
79     public DownloadRemoteIndexTaskRequest setNetworkProxy( NetworkProxy networkProxy )
80     {
81         this.networkProxy = networkProxy;
82         return this;
83     }
84
85     public boolean isFullDownload()
86     {
87         return fullDownload;
88     }
89
90     public DownloadRemoteIndexTaskRequest setFullDownload( boolean fullDownload )
91     {
92         this.fullDownload = fullDownload;
93         return this;
94     }
95
96     public IndexUpdater getIndexUpdater()
97     {
98         return indexUpdater;
99     }
100
101     public DownloadRemoteIndexTaskRequest setIndexUpdater( IndexUpdater indexUpdater )
102     {
103         this.indexUpdater = indexUpdater;
104         return this;
105     }
106
107     public IndexPacker getIndexPacker()
108     {
109         return indexPacker;
110     }
111
112     public DownloadRemoteIndexTaskRequest setIndexPacker( IndexPacker indexPacker )
113     {
114         this.indexPacker = indexPacker;
115         return this;
116     }
117 }