]> source.dussan.org Git - archiva.git/blob
7bdc708a9fe969552f9c22bd5c80b675fb1dcc69
[archiva.git] /
1 package org.apache.maven.repository.reporting;
2
3 /*
4  * Copyright 2005-2006 The Apache Software Foundation.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 import org.apache.maven.artifact.Artifact;
20 import org.apache.maven.artifact.factory.ArtifactFactory;
21 import org.apache.maven.artifact.versioning.VersionRange;
22
23 /**
24  * @noinspection ReturnOfNull
25  */
26 public class MockArtifactFactory
27     implements ArtifactFactory
28 {
29     public Artifact createArtifact( String s, String s1, String s2, String s3, String s4 )
30     {
31         return null;
32     }
33
34     public Artifact createArtifactWithClassifier( String s, String s1, String s2, String s3, String s4 )
35     {
36         return null;
37     }
38
39     public Artifact createDependencyArtifact( String s, String s1, VersionRange versionRange, String s2, String s3,
40                                               String s4 )
41     {
42         return null;
43     }
44
45     public Artifact createDependencyArtifact( String s, String s1, VersionRange versionRange, String s2, String s3,
46                                               String s4, String s5 )
47     {
48         return null;
49     }
50
51     public Artifact createDependencyArtifact( String s, String s1, VersionRange versionRange, String s2, String s3,
52                                               String s4, String s5, boolean b )
53     {
54         return null;
55     }
56
57     public Artifact createBuildArtifact( String s, String s1, String s2, String s3 )
58     {
59         return null;
60     }
61
62     public Artifact createProjectArtifact( String s, String s1, String s2 )
63     {
64         return null;
65     }
66
67     public Artifact createParentArtifact( String s, String s1, String s2 )
68     {
69         return null;
70     }
71
72     public Artifact createPluginArtifact( String s, String s1, VersionRange versionRange )
73     {
74         return null;
75     }
76
77     public Artifact createProjectArtifact( String s, String s1, String s2, String s3 )
78     {
79         return null;
80     }
81
82     public Artifact createExtensionArtifact( String s, String s1, VersionRange versionRange )
83     {
84         return null;
85     }
86
87     public Artifact createDependencyArtifact( String string, String string1, VersionRange versionRange, String string2,
88                                               String string3, String string4, boolean b )
89     {
90         return null;
91     }
92 }