]> source.dussan.org Git - archiva.git/blob
d48ccc455634ae8ed005fba3ad3b95418f15670d
[archiva.git] /
1 package org.apache.maven.archiva.web.action.admin.repositories;
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 java.io.Serializable;
23 import java.util.List;
24
25 import org.apache.maven.archiva.database.ArchivaDAO;
26 import org.apache.maven.archiva.database.ArtifactDAO;
27 import org.apache.maven.archiva.database.ProjectModelDAO;
28 import org.apache.maven.archiva.database.RepositoryContentStatisticsDAO;
29 import org.apache.maven.archiva.database.RepositoryProblemDAO;
30 import org.apache.maven.archiva.database.SimpleConstraint;
31
32 /**
33  * DeleteManagedRepositoryArchivaDAOStub
34  * 
35  * @author <a href="mailto:oching@apache.org">Maria Odea Ching</a>
36  * @version
37  */
38 public class DeleteManagedRepositoryArchivaDAOStub
39     implements ArchivaDAO
40 {
41     /**
42      * @plexus.requirement role-hint="jdo"
43      */
44     private ProjectModelDAO projectModelDAO;
45
46     /**
47      * @plexus.requirement role-hint="jdo"
48      */
49     private ArtifactDAO artifactDAO;
50
51     /**
52      * @plexus.requirement role-hint="jdo"
53      */
54     private RepositoryContentStatisticsDAO repoContentStatisticsDAO;
55
56     public List query( SimpleConstraint constraint )
57     {
58         return null;
59     }
60
61     public Object save( Serializable obj )
62     {
63         throw new UnsupportedOperationException( "query not implemented for stub" );
64     }
65
66     public ArtifactDAO getArtifactDAO()
67     {
68         return artifactDAO;
69     }
70
71     public ProjectModelDAO getProjectModelDAO()
72     {
73         return projectModelDAO;
74     }
75
76     public RepositoryProblemDAO getRepositoryProblemDAO()
77     {
78         throw new UnsupportedOperationException( "query not implemented for stub" );
79     }
80
81     public RepositoryContentStatisticsDAO getRepositoryContentStatisticsDAO()
82     {
83         return repoContentStatisticsDAO;
84     }
85 }