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 BaseAsset
The 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.String
getAssetId()
A convenience method that callsgetIdentifer().getId()
java.lang.String
getAssetType()
A convenience method that callsgetIdentifer().getType().toString()
Identifier
getIdentifer()
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
Identifier
which 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()
-
-