Interface BaseAsset
-
- All Known Subinterfaces:
AssetFactory,Block,ContentType,Destination,DestinationContainer,FeedBlock,File,Folder,FolderContainedAsset,Format,FTPTransport,IndexBlock,MetadataAwareAsset,MetadataSet,NamedAsset,Page,PageConfiguration,PermissionsCapableAsset,PublishableAsset,Reference,ScriptFormat,Site,SiteDestinationContainer,SiteManagementAreaAsset,StructuredDataCapableAsset,StructuredDataDefinition,StructuredDataNode,Symlink,Template,TextBlock,Transport,TwitterFeedBlock,User,XHTMLDataDefinitionBlock,XMLBlock,XSLTFormat
public interface BaseAssetThe base of the Cascade Server asset hierarchy.This interface defines the properties that all assets inside Cascade Server have in common.
- Since:
- 4.7
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetAssetId()A convenience method that callsgetIdentifer().getId()java.lang.StringgetAssetType()A convenience method that callsgetIdentifer().getType().toString()IdentifiergetIdentifer()Get this asset's identifier.
-
-
-
Method Detail
-
getIdentifer
Identifier getIdentifer()
Get this asset's identifier. This is used to locate the asset or set a relationship to this asset.This property is immutable.
- Returns:
- this asset's
Identifierwhich uniquely identifies this asset.
-
getAssetType
java.lang.String getAssetType()
A convenience method that callsgetIdentifer().getType().toString()
-
getAssetId
java.lang.String getAssetId()
A convenience method that callsgetIdentifer().getId()
-
-