org.apache.maven.index.creator
Class MavenArchetypeArtifactInfoIndexCreator

java.lang.Object
  extended by org.codehaus.plexus.logging.AbstractLogEnabled
      extended by org.apache.maven.index.creator.AbstractIndexCreator
          extended by org.apache.maven.index.creator.MavenArchetypeArtifactInfoIndexCreator
All Implemented Interfaces:
IndexCreator, org.codehaus.plexus.logging.LogEnabled

@Component(role=IndexCreator.class,
           hint="maven-archetype")
public class MavenArchetypeArtifactInfoIndexCreator
extends AbstractIndexCreator

A Maven Archetype index creator used to detect and correct the artifact packaging to "maven-archetype" if the inspected JAR is an Archetype. Since packaging is already handled by Minimal creator, this Creator only alters the supplied ArtifactInfo packaging field during processing, but does not interferes with Lucene document fill-up or the ArtifactInfo fill-up (the update* methods are empty).

Author:
cstamas

Field Summary
static String ID
           
 
Constructor Summary
MavenArchetypeArtifactInfoIndexCreator()
           
 
Method Summary
 Collection<IndexerField> getIndexerFields()
          Returns the indexer fields that this IndexCreator introduces to index.
 void populateArtifactInfo(ArtifactContext ac)
          Populate an ArtifactContext with information about corresponding artifact.
 String toString()
           
 boolean updateArtifactInfo(org.apache.lucene.document.Document doc, ArtifactInfo ai)
          Update an ArtifactInfo from given Lucene Document.
 void updateDocument(ArtifactInfo ai, org.apache.lucene.document.Document doc)
          Update Lucene Document from a given ArtifactInfo.
 
Methods inherited from class org.apache.maven.index.creator.AbstractIndexCreator
bos, getCreatorDependencies, getId, sob
 
Methods inherited from class org.codehaus.plexus.logging.AbstractLogEnabled
enableLogging, getLogger, setupLogger, setupLogger, setupLogger
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

ID

public static final String ID
See Also:
Constant Field Values
Constructor Detail

MavenArchetypeArtifactInfoIndexCreator

public MavenArchetypeArtifactInfoIndexCreator()
Method Detail

populateArtifactInfo

public void populateArtifactInfo(ArtifactContext ac)
Description copied from interface: IndexCreator
Populate an ArtifactContext with information about corresponding artifact.


updateDocument

public void updateDocument(ArtifactInfo ai,
                           org.apache.lucene.document.Document doc)
Description copied from interface: IndexCreator
Update Lucene Document from a given ArtifactInfo.


updateArtifactInfo

public boolean updateArtifactInfo(org.apache.lucene.document.Document doc,
                                  ArtifactInfo ai)
Description copied from interface: IndexCreator
Update an ArtifactInfo from given Lucene Document.

Returns:
true is artifact info has been updated

toString

public String toString()
Overrides:
toString in class Object

getIndexerFields

public Collection<IndexerField> getIndexerFields()
Description copied from interface: IndexCreator
Returns the indexer fields that this IndexCreator introduces to index.

Returns:


Copyright © 2002-2012 The Apache Software Foundation. All Rights Reserved.