blob: 08abbfb709f74246c76213b08dd28095087bf111 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.codehaus.mojo.archetypeng;
import org.apache.maven.artifact.repository.ArtifactRepository;
import org.apache.maven.shared.downloader.DownloadException;
import org.apache.maven.shared.downloader.DownloadNotFoundException;
import org.codehaus.mojo.archetypeng.archetype.filesets.ArchetypeDescriptor;
import org.codehaus.mojo.archetypeng.exception.UnknownArchetype;
import org.codehaus.mojo.archetypeng.exception.UnknownGroup;
import java.io.File;
import java.util.List;
import java.util.zip.ZipFile;
public interface ArchetypeArtifactManager
{
String ROLE = ArchetypeArtifactManager.class.getName ();
/**
*/
File getArchetypeFile (
final String groupId,
final String artifactId,
final String version,
final ArtifactRepository localRepository,
final List repositories
)
throws UnknownArchetype;
/**
*/
ClassLoader getArchetypeJarLoader ( File archetypeFile )
throws UnknownArchetype;
/**
*/
ClassLoader getArchetypeJarLoader (
String groupId,
String artifactId,
String version,
ArtifactRepository localRepository,
List repositories
)
throws UnknownArchetype;
/**
*/
List getArchetypes ( String groupId, ArtifactRepository localRepository, List repositories )
throws UnknownGroup;
/**
*/
ZipFile getArchetypeZipFile ( File archetypeFile )
throws UnknownArchetype;
/**
*/
ZipFile getArchetypeZipFile (
String groupId,
String artifactId,
String version,
ArtifactRepository localRepository,
List repositories
)
throws UnknownArchetype;
/**
*/
boolean exists (
String groupId,
String artifactId,
String version,
ArtifactRepository localRepository,
List repositories
);
/**
*/
boolean isFileSetArchetype (
String groupId,
String artifactId,
String version,
ArtifactRepository localRepository,
List repositories
);
/**
*/
ArchetypeDescriptor getFileSetArchetypeDescriptor ( File archetypeFile )
throws UnknownArchetype;
/**
*/
org.codehaus.mojo.archetypeng.archetype.filesets.ArchetypeDescriptor
getFileSetArchetypeDescriptor (
String groupId,
String artifactId,
String version,
ArtifactRepository localRepository,
List repositories
)
throws UnknownArchetype;
/**
*/
List getFilesetArchetypeResources ( File archetypeFile )
throws UnknownArchetype;
/**
*/
List getFilesetArchetypeResources (
String groupId,
String artifactId,
String version,
ArtifactRepository localRepository,
List repositories
)
throws UnknownArchetype;
/**
*/
boolean isOldArchetype (
String groupId,
String artifactId,
String version,
ArtifactRepository localRepository,
List repositories
);
/**
*/
org.apache.maven.archetype.descriptor.ArchetypeDescriptor getOldArchetypeDescriptor (
String groupId,
String artifactId,
String version,
ArtifactRepository localRepository,
List repositories
)
throws UnknownArchetype;
/**
*/
String getReleaseVersion (
String groupId,
String artifactId,
ArtifactRepository localRepository,
List repositories
)
throws UnknownArchetype;
/**
*/
List getVersions (
String groupId,
String artifactId,
ArtifactRepository localRepository,
List repositories
)
throws UnknownArchetype;
}