Package org.guvnor.ala.build
Interface Project
-
- All Superinterfaces:
Config,ProjectConfig
public interface Project extends ProjectConfig
Represent one logical project Project. Implement this interface to provider different project types.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.uberfire.java.nio.file.PathgetBinaryPath()StringgetExpectedBinary()StringgetId()StringgetName()org.uberfire.java.nio.file.PathgetPath()org.uberfire.java.nio.file.PathgetRootPath()StringgetTempDir()StringgetType()
-
-
-
Method Detail
-
getId
String getId()
-
getType
String getType()
-
getName
String getName()
-
getExpectedBinary
String getExpectedBinary()
-
getRootPath
org.uberfire.java.nio.file.Path getRootPath()
-
getPath
org.uberfire.java.nio.file.Path getPath()
-
getBinaryPath
org.uberfire.java.nio.file.Path getBinaryPath()
-
getTempDir
String getTempDir()
-
-