View Javadoc

1   package org.apache.maven;
2   
3   import org.apache.maven.project.MavenProject;
4   import org.apache.maven.project.ProjectBuilderConfiguration;
5   
6   public interface ConfigurationInterpolator
7   {
8       
9       String ROLE = ConfigurationInterpolator.class.getName();
10      
11      Object interpolate( Object configObject, MavenProject project, ProjectBuilderConfiguration config )
12          throws ConfigurationInterpolationException;
13  
14  }