]> source.dussan.org Git - archiva.git/blob
b3456aa36c9286c24c2e5c69faa804917f6b1f6e
[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  * AbstractManagedRepositoryArchivaDAOStub
34  * 
35  * @version
36  */
37 public class AbstractManagedRepositoryArchivaDAOStub
38     implements ArchivaDAO
39 {
40     /**
41      * @plexus.requirement role-hint="jdo"
42      */
43     private ProjectModelDAO projectModelDAO;
44
45     /**
46      * @plexus.requirement role-hint="jdo"
47      */
48     private ArtifactDAO artifactDAO;
49
50     /**
51      * @plexus.requirement role-hint="jdo"
52      */
53     private RepositoryContentStatisticsDAO repoContentStatisticsDAO;
54
55     public List query( SimpleConstraint constraint )
56     {
57         return null;
58     }
59
60     public Object save( Serializable obj )
61     {
62         throw new UnsupportedOperationException( "query not implemented for stub" );
63     }
64
65     public ArtifactDAO getArtifactDAO()
66     {
67         return artifactDAO;
68     }
69
70     public ProjectModelDAO getProjectModelDAO()
71     {
72         return projectModelDAO;
73     }
74
75     public RepositoryProblemDAO getRepositoryProblemDAO()
76     {
77         throw new UnsupportedOperationException( "query not implemented for stub" );
78     }
79
80     public RepositoryContentStatisticsDAO getRepositoryContentStatisticsDAO()
81     {
82         return repoContentStatisticsDAO;
83     }
84 }