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.String
getDescription()
Gets the description of this Assetjava.lang.String
getId()
Gets the identifier of this Assetjava.lang.String
getName()
Gets the name of Assetjava.lang.String
getTitle()
Gets the display name of Assetvoid
setDescription(java.lang.String description)
void
setId(java.lang.String id)
void
setName(java.lang.String name)
void
setTitle(java.lang.String title)
-
-
-
Method Detail
-
getDescription
public java.lang.String getDescription()
Gets the description of this Asset- Specified by:
getDescription
in 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)
-
-