Interface ImportedProject
-
public interface ImportedProject
- Author:
- Dmitry Treskunov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ConfigEntityId>
getBuildTypes()
ConfigEntityId
getConfigEntityId()
String
getConfigId()
String
getExtId()
String
getFullName()
String
getName()
String
getParentId()
List<ImportedProject>
getParentPath()
List<ConfigEntityId>
getTemplates()
List<ConfigEntityId>
getVcsRoots()
boolean
isRootProject()
-
-
-
Method Detail
-
getConfigId
@NotNull String getConfigId()
-
getExtId
@NotNull String getExtId()
-
getName
@NotNull String getName()
-
getFullName
@NotNull String getFullName()
-
getParentPath
@NotNull List<ImportedProject> getParentPath()
-
isRootProject
boolean isRootProject()
-
getParentId
@Nullable String getParentId()
- Returns:
- null if this project is root, otherwise parent's ext id
-
getConfigEntityId
@NotNull ConfigEntityId getConfigEntityId()
-
getVcsRoots
@NotNull List<ConfigEntityId> getVcsRoots()
-
getBuildTypes
@NotNull List<ConfigEntityId> getBuildTypes()
-
getTemplates
@NotNull List<ConfigEntityId> getTemplates()
-
-