Package org.nuxeo.targetplatforms.api
Interface TargetPackage
-
- All Superinterfaces:
Serializable
,Target
,TargetInfo
- All Known Implementing Classes:
TargetPackageExtension
,TargetPackageImpl
public interface TargetPackage extends Target
Represents a target package.- Since:
- 5.7.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<String>
getDependencies()
Returns the list of target packages that this target package depends on.TargetPackage
getParent()
Returns the parent target package or null if there is no inheritance.-
Methods inherited from interface org.nuxeo.targetplatforms.api.Target
isAfterVersion, isAfterVersion, isStrictlyBeforeVersion, isStrictlyBeforeVersion, isVersion, isVersion
-
Methods inherited from interface org.nuxeo.targetplatforms.api.TargetInfo
getDescription, getDownloadLink, getEndOfAvailability, getId, getLabel, getName, getRefVersion, getReleaseDate, getStatus, getTypes, getVersion, isDefault, isDeprecated, isEnabled, isFastTrack, isOverridden, isRestricted, isTrial, matchesType
-
-
-
-
Method Detail
-
getDependencies
List<String> getDependencies()
Returns the list of target packages that this target package depends on.
-
getParent
TargetPackage getParent()
Returns the parent target package or null if there is no inheritance.
-
-