org.apache.maven.project.interpolation
Class AbstractStringBasedModelInterpolator

java.lang.Object
  extended by org.codehaus.plexus.logging.AbstractLogEnabled
      extended by org.apache.maven.project.interpolation.AbstractStringBasedModelInterpolator
All Implemented Interfaces:
ModelInterpolator, LogEnabled, Initializable
Direct Known Subclasses:
RegexBasedModelInterpolator, StringSearchModelInterpolator

Deprecated.

@Deprecated
public abstract class AbstractStringBasedModelInterpolator
extends AbstractLogEnabled
implements ModelInterpolator, Initializable

Use a regular expression search to find and resolve expressions within the POM.

Author:
jdcasey Created on Feb 3, 2005

Field Summary
 
Fields inherited from interface org.apache.maven.project.interpolation.ModelInterpolator
BUILD_TIMESTAMP_FORMAT_PROPERTY, DEFAULT_BUILD_TIMESTAMP_FORMAT, ROLE
 
Constructor Summary
protected AbstractStringBasedModelInterpolator()
          Deprecated.  
protected AbstractStringBasedModelInterpolator(PathTranslator pathTranslator)
          Deprecated.  
 
Method Summary
protected abstract  org.codehaus.plexus.interpolation.Interpolator createInterpolator()
          Deprecated.  
protected  List<org.codehaus.plexus.interpolation.InterpolationPostProcessor> createPostProcessors(Model model, File projectDir, ProjectBuilderConfiguration config)
          Deprecated.  
protected  List<org.codehaus.plexus.interpolation.ValueSource> createValueSources(Model model, File projectDir, ProjectBuilderConfiguration config)
          Deprecated.  
protected  org.codehaus.plexus.interpolation.Interpolator getInterpolator()
          Deprecated.  
protected  org.codehaus.plexus.interpolation.RecursionInterceptor getRecursionInterceptor()
          Deprecated.  
 void initialize()
          Deprecated.  
 Model interpolate(Model model, File projectDir, ProjectBuilderConfiguration config, boolean debugEnabled)
          Deprecated.  
 Model interpolate(Model model, Map<String,?> context)
          Deprecated.  
 Model interpolate(Model model, Map<String,?> context, boolean strict)
          Deprecated. Use ModelInterpolator.interpolate(Model, File, ProjectBuilderConfiguration, boolean) instead.
 String interpolate(String src, Model model, File projectDir, ProjectBuilderConfiguration config, boolean debug)
          Deprecated. Interpolates all expressions in the src parameter.
protected  String interpolateInternal(String src, List<org.codehaus.plexus.interpolation.ValueSource> valueSources, List<org.codehaus.plexus.interpolation.InterpolationPostProcessor> postProcessors, boolean debug)
          Deprecated.  
protected  void setRecursionInterceptor(org.codehaus.plexus.interpolation.RecursionInterceptor recursionInterceptor)
          Deprecated.  
 
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, toString, wait, wait, wait
 

Constructor Detail

AbstractStringBasedModelInterpolator

protected AbstractStringBasedModelInterpolator(PathTranslator pathTranslator)
Deprecated. 

AbstractStringBasedModelInterpolator

protected AbstractStringBasedModelInterpolator()
Deprecated. 
Throws:
IOException - This exception is not thrown any more, and needs to be removed.
Method Detail

interpolate

public Model interpolate(Model model,
                         Map<String,?> context)
                  throws ModelInterpolationException
Deprecated. 
Specified by:
interpolate in interface ModelInterpolator
Throws:
ModelInterpolationException

interpolate

public Model interpolate(Model model,
                         Map<String,?> context,
                         boolean strict)
                  throws ModelInterpolationException
Deprecated. Use ModelInterpolator.interpolate(Model, File, ProjectBuilderConfiguration, boolean) instead.

Serialize the inbound Model instance to a StringWriter, perform the regex replacement to resolve POM expressions, then re-parse into the resolved Model instance.
NOTE: This will result in a different instance of Model being returned!!!

Specified by:
interpolate in interface ModelInterpolator
Parameters:
model - The inbound Model instance, to serialize and reference for expression resolution
context - The other context map to be used during resolution
Returns:
The resolved instance of the inbound Model. This is a different instance!
Throws:
ModelInterpolationException

interpolate

public Model interpolate(Model model,
                         File projectDir,
                         ProjectBuilderConfiguration config,
                         boolean debugEnabled)
                  throws ModelInterpolationException
Deprecated. 
Specified by:
interpolate in interface ModelInterpolator
Throws:
ModelInterpolationException

interpolate

public String interpolate(String src,
                          Model model,
                          File projectDir,
                          ProjectBuilderConfiguration config,
                          boolean debug)
                   throws ModelInterpolationException
Deprecated. 
Interpolates all expressions in the src parameter.

The algorithm used for each expression is:


createValueSources

protected List<org.codehaus.plexus.interpolation.ValueSource> createValueSources(Model model,
                                                                                 File projectDir,
                                                                                 ProjectBuilderConfiguration config)
Deprecated. 

createPostProcessors

protected List<org.codehaus.plexus.interpolation.InterpolationPostProcessor> createPostProcessors(Model model,
                                                                                                  File projectDir,
                                                                                                  ProjectBuilderConfiguration config)
Deprecated. 

interpolateInternal

protected String interpolateInternal(String src,
                                     List<org.codehaus.plexus.interpolation.ValueSource> valueSources,
                                     List<org.codehaus.plexus.interpolation.InterpolationPostProcessor> postProcessors,
                                     boolean debug)
                              throws ModelInterpolationException
Deprecated. 
Throws:
ModelInterpolationException

getRecursionInterceptor

protected org.codehaus.plexus.interpolation.RecursionInterceptor getRecursionInterceptor()
Deprecated. 

setRecursionInterceptor

protected void setRecursionInterceptor(org.codehaus.plexus.interpolation.RecursionInterceptor recursionInterceptor)
Deprecated. 

createInterpolator

protected abstract org.codehaus.plexus.interpolation.Interpolator createInterpolator()
Deprecated. 

initialize

public void initialize()
                throws InitializationException
Deprecated. 
Specified by:
initialize in interface Initializable
Throws:
InitializationException

getInterpolator

protected final org.codehaus.plexus.interpolation.Interpolator getInterpolator()
Deprecated. 


Copyright © 2001–2013 The Apache Software Foundation. All rights reserved.