Interface ImportedProject
-
public interface ImportedProject- Author:
- Dmitry Treskunov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ConfigEntityId>getBuildTypes()ConfigEntityIdgetConfigEntityId()StringgetConfigId()StringgetExtId()StringgetFullName()StringgetName()StringgetParentId()List<ImportedProject>getParentPath()List<ConfigEntityId>getTemplates()List<ConfigEntityId>getVcsRoots()booleanisRootProject()
-
-
-
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()
-
-