Package org.apache.maven.toolchain
Interface ToolchainFactory
-
- All Known Implementing Classes:
DefaultJavaToolchainFactory
public interface ToolchainFactory
- Author:
- mkleint
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
ROLE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ToolchainPrivate
createDefaultToolchain()
Returns the default instance of the particular type of toolchain, can return null if not applicable.ToolchainPrivate
createToolchain(ToolchainModel model)
Create instance of toolchain.
-
-
-
Method Detail
-
createToolchain
ToolchainPrivate createToolchain(ToolchainModel model) throws MisconfiguredToolchainException
Create instance of toolchain.- Throws:
MisconfiguredToolchainException
-
createDefaultToolchain
ToolchainPrivate createDefaultToolchain()
Returns the default instance of the particular type of toolchain, can return null if not applicable. TODO keep around??
-
-