Package com.adobe.cq.dam.cfm
Interface VersionDef
-
public interface VersionDef
Represents a version of a content item (like the entire fragment, an element or a variation of it).Instances of this interface are considered to hold "lightweight" representations of a version - they're just defining the basic data required to reference a version, not to access its content.
To access the actual versioned content, see
Versionable.getVersionedContent(VersionDef)
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDescription()
Gets a human-readable description of the represented version.java.lang.String
getIdentifier()
Gets a text-based identifier for the represented version.
-
-
-
Method Detail
-
getIdentifier
java.lang.String getIdentifier()
Gets a text-based identifier for the represented version.The identifier has to be unique for the implementation. Otherwise, it is left to the implementation what that identifier may look like.
- Returns:
- The text-based identifier for the version
-
getDescription
java.lang.String getDescription()
Gets a human-readable description of the represented version.- Returns:
- The human-readable description for the version
-
-