Class RegexpPatternMapper

java.lang.Object
org.apache.maven.shared.model.fileset.mappers.RegexpPatternMapper
All Implemented Interfaces:
FileNameMapper

public class RegexpPatternMapper extends Object implements FileNameMapper
Implementation of RegexpPatternMapper that returns either the source file name or it processed by a matching Regular Expression and its replacement.

This is a RegexpPatternMapper for the copy and move tasks.

  • Constructor Details

    • RegexpPatternMapper

      public RegexpPatternMapper()
  • Method Details

    • setFrom

      public void setFrom(String from)
      Description copied from interface: FileNameMapper
      Sets the from part of the transformation rule.
      Specified by:
      setFrom in interface FileNameMapper
      Parameters:
      from - the source
    • setTo

      public void setTo(String to)
      Description copied from interface: FileNameMapper
      Sets the to part of the transformation rule.
      Specified by:
      setTo in interface FileNameMapper
      Parameters:
      to - the destination
    • mapFileName

      public String mapFileName(String sourceFileName)
      Description copied from interface: FileNameMapper
      Returns the target filename for the given source file.

      If the given rule doesn't apply to the source file, the implementation must return null. SourceFileScanner will then omit the source file in question.

      Specified by:
      mapFileName in interface FileNameMapper
      Parameters:
      sourceFileName - the name of the source file relative to some given base directory
      Returns:
      the target filename for the given source file