]> source.dussan.org Git - archiva.git/blob
fd74d15bcd08f820e7295f565b09a44c7af3aa46
[archiva.git] /
1 package org.apache.archiva.rest.services;
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.RepositoryAdminException;
22 import org.apache.archiva.admin.model.beans.ProxyConnectorRule;
23 import org.apache.archiva.admin.model.proxyconnectorrule.ProxyConnectorRuleAdmin;
24 import org.apache.archiva.rest.api.services.ArchivaRestServiceException;
25 import org.apache.archiva.rest.api.services.ProxyConnectorRuleService;
26 import org.springframework.stereotype.Service;
27
28 import javax.inject.Inject;
29 import java.util.List;
30
31 /**
32  * @author Olivier Lamy
33  */
34 @Service ( "proxyConnectorRuleService#rest" )
35 public class DefaultProxyConnectorRuleService
36     extends AbstractRestService
37     implements ProxyConnectorRuleService
38 {
39
40     @Inject
41     private ProxyConnectorRuleAdmin proxyConnectorRuleAdmin;
42
43     public List<ProxyConnectorRule> getProxyConnectorRules()
44         throws ArchivaRestServiceException
45     {
46         try
47         {
48             return proxyConnectorRuleAdmin.getProxyConnectorRules();
49         }
50         catch ( RepositoryAdminException e )
51         {
52             throw new ArchivaRestServiceException( e.getMessage(), e );
53         }
54     }
55
56     public Boolean addProxyConnectorRule( ProxyConnectorRule proxyConnectorRule )
57         throws ArchivaRestServiceException
58     {
59         try
60         {
61             proxyConnectorRuleAdmin.addProxyConnectorRule( proxyConnectorRule, getAuditInformation() );
62             return Boolean.TRUE;
63         }
64         catch ( RepositoryAdminException e )
65         {
66             throw new ArchivaRestServiceException( e.getMessage(), e );
67         }
68     }
69
70     public Boolean deleteProxyConnectorRule( ProxyConnectorRule proxyConnectorRule )
71         throws ArchivaRestServiceException
72     {
73         try
74         {
75             proxyConnectorRuleAdmin.deleteProxyConnectorRule( proxyConnectorRule, getAuditInformation() );
76             return Boolean.TRUE;
77         }
78         catch ( RepositoryAdminException e )
79         {
80             throw new ArchivaRestServiceException( e.getMessage(), e );
81         }
82     }
83
84     public Boolean updateProxyConnectorRule( ProxyConnectorRule proxyConnectorRule )
85         throws ArchivaRestServiceException
86     {
87         try
88         {
89             proxyConnectorRuleAdmin.updateProxyConnectorRule( proxyConnectorRule, getAuditInformation() );
90             return Boolean.TRUE;
91         }
92         catch ( RepositoryAdminException e )
93         {
94             throw new ArchivaRestServiceException( e.getMessage(), e );
95         }
96     }
97 }