Package com.adobe.aem.dermis.model
Class AbstractAsset
- java.lang.Object
-
- com.adobe.aem.dermis.model.AbstractAsset
-
- All Implemented Interfaces:
IAsset,java.io.Serializable
- Direct Known Subclasses:
DataModel,Operation,Schema,TypedAsset
public abstract class AbstractAsset extends java.lang.Object implements IAsset
Abstract implementation ofIAsset. Implements most common and trivial methods.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractAsset()AbstractAsset(java.lang.String name)AbstractAsset(java.lang.String name, java.lang.String description)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()Gets the description of this Assetjava.lang.StringgetId()Gets the identifier of this Assetjava.lang.StringgetName()Gets the name of Assetjava.lang.StringgetTitle()Gets the display name of AssetvoidsetDescription(java.lang.String description)voidsetId(java.lang.String id)voidsetName(java.lang.String name)voidsetTitle(java.lang.String title)
-
-
-
Method Detail
-
getDescription
public java.lang.String getDescription()
Gets the description of this Asset- Specified by:
getDescriptionin interfaceIAsset- Returns:
- the description of this Asset
-
setDescription
public void setDescription(java.lang.String description)
-
getName
public java.lang.String getName()
Gets the name of Asset
-
setName
public void setName(java.lang.String name)
-
getTitle
public java.lang.String getTitle()
Gets the display name of Asset
-
setTitle
public void setTitle(java.lang.String title)
-
getId
public java.lang.String getId()
Gets the identifier of this Asset
-
setId
public void setId(java.lang.String id)
-
-