Class TargetInfoExtension
- java.lang.Object
-
- org.nuxeo.targetplatforms.api.impl.TargetInfoExtension
-
- All Implemented Interfaces:
Serializable,TargetInfo
- Direct Known Subclasses:
TargetExtension
public class TargetInfoExtension extends Object implements TargetInfo
TargetInfoimplementation relying on an original implementation, useful for override when adding additional metadata.- Since:
- 5.7.1
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected TargetInfoorigInfo
-
Constructor Summary
Constructors Modifier Constructor Description protectedTargetInfoExtension()TargetInfoExtension(TargetInfo orig)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()Returns a description for this target.StringgetDownloadLink()Returns this target download link.DategetEndOfAvailability()Returns this target end of availability date.StringgetId()This target unique identifier (usually some kind of concatenation of name and version).StringgetLabel()A user-friendly label for this platform, like "Nuxeo Platform 5.8".StringgetName()The target platform name, for instance "cap".StringgetRefVersion()The target platform reference version used for behaviour checks.DategetReleaseDate()Returns this target release date.protected StringgetSimpleName()StringgetStatus()String marker for a dev/deprecated/new status.List<String>getTypes()String markers for feature/behaviour checks on this instance.StringgetVersion()The target platform version, for instance "5.8".booleanisDefault()Returns true if given target information is marked as default.booleanisDeprecated()Returns true if given target is deprecated.booleanisEnabled()Returns true if the corresponding target platform is enabled.booleanisFastTrack()Returns true if given target platform is a fast trackbooleanisOverridden()Returns true if given target information is overridden by directory information.booleanisRestricted()Returns true if access to the corresponding target platform is restricted.booleanisTrial()Returns true if given target information is available for trials.booleanmatchesType(String type)Returns true if given type is in the list of this target types.StringtoString()
-
-
-
Field Detail
-
origInfo
protected TargetInfo origInfo
-
-
Constructor Detail
-
TargetInfoExtension
protected TargetInfoExtension()
-
TargetInfoExtension
public TargetInfoExtension(TargetInfo orig)
-
-
Method Detail
-
getId
public String getId()
Description copied from interface:TargetInfoThis target unique identifier (usually some kind of concatenation of name and version).- Specified by:
getIdin interfaceTargetInfo
-
getName
public String getName()
Description copied from interface:TargetInfoThe target platform name, for instance "cap".- Specified by:
getNamein interfaceTargetInfo
-
getVersion
public String getVersion()
Description copied from interface:TargetInfoThe target platform version, for instance "5.8".- Specified by:
getVersionin interfaceTargetInfo
-
getRefVersion
public String getRefVersion()
Description copied from interface:TargetInfoThe target platform reference version used for behaviour checks.Defaults to
TargetInfo.getVersion()when not set.- Specified by:
getRefVersionin interfaceTargetInfo
-
getStatus
public String getStatus()
Description copied from interface:TargetInfoString marker for a dev/deprecated/new status.- Specified by:
getStatusin interfaceTargetInfo
-
getLabel
public String getLabel()
Description copied from interface:TargetInfoA user-friendly label for this platform, like "Nuxeo Platform 5.8".- Specified by:
getLabelin interfaceTargetInfo
-
getDescription
public String getDescription()
Description copied from interface:TargetInfoReturns a description for this target.Can contain HTML code.
- Specified by:
getDescriptionin interfaceTargetInfo
-
isEnabled
public boolean isEnabled()
Description copied from interface:TargetInfoReturns true if the corresponding target platform is enabled.- Specified by:
isEnabledin interfaceTargetInfo
-
isRestricted
public boolean isRestricted()
Description copied from interface:TargetInfoReturns true if access to the corresponding target platform is restricted.Criteria for which access should be granted or not are left to the caller.
- Specified by:
isRestrictedin interfaceTargetInfo
-
getReleaseDate
public Date getReleaseDate()
Description copied from interface:TargetInfoReturns this target release date.- Specified by:
getReleaseDatein interfaceTargetInfo
-
getEndOfAvailability
public Date getEndOfAvailability()
Description copied from interface:TargetInfoReturns this target end of availability date.- Specified by:
getEndOfAvailabilityin interfaceTargetInfo
-
getDownloadLink
public String getDownloadLink()
Description copied from interface:TargetInfoReturns this target download link.- Specified by:
getDownloadLinkin interfaceTargetInfo
-
isDeprecated
public boolean isDeprecated()
Description copied from interface:TargetInfoReturns true if given target is deprecated.- Specified by:
isDeprecatedin interfaceTargetInfo
-
isTrial
public boolean isTrial()
Description copied from interface:TargetInfoReturns true if given target information is available for trials.- Specified by:
isTrialin interfaceTargetInfo
-
isDefault
public boolean isDefault()
Description copied from interface:TargetInfoReturns true if given target information is marked as default.- Specified by:
isDefaultin interfaceTargetInfo
-
isFastTrack
public boolean isFastTrack()
Description copied from interface:TargetInfoReturns true if given target platform is a fast track- Specified by:
isFastTrackin interfaceTargetInfo
-
isOverridden
public boolean isOverridden()
Description copied from interface:TargetInfoReturns true if given target information is overridden by directory information.- Specified by:
isOverriddenin interfaceTargetInfo
-
getTypes
public List<String> getTypes()
Description copied from interface:TargetInfoString markers for feature/behaviour checks on this instance.- Specified by:
getTypesin interfaceTargetInfo
-
matchesType
public boolean matchesType(String type)
Description copied from interface:TargetInfoReturns true if given type is in the list of this target types.- Specified by:
matchesTypein interfaceTargetInfo
-
getSimpleName
protected String getSimpleName()
-
-