Interface ChangeableResourceDescriptor
-
- All Superinterfaces:
PluginDataContainer,ResourceDescriptor,UserAttributeContainer
public interface ChangeableResourceDescriptor extends ResourceDescriptor
/** This interface extendsResourceDescriptorby the means to change its attributes.- Author:
- Ulrich Kreher
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetDescription(String description)Sets the description of the resource (descriptor).voidsetName(String name)Sets the name of the resource (descriptor).-
Methods inherited from interface de.aristaflow.adept2.model.common.PluginDataContainer
getPluginData, getPluginDatas, getSupportedPlugins
-
Methods inherited from interface de.aristaflow.adept2.model.common.ResourceDescriptor
getDescription, getID, getName, getRevision, getState
-
Methods inherited from interface de.aristaflow.adept2.model.common.UserAttributeContainer
getUserAttributes, getUserAttributeValue, removeUserAttributeValue, setUserAttributeValue
-
-
-
-
Method Detail
-
setName
void setName(String name)
Sets the name of the resource (descriptor).- Parameters:
name- The name of the resource (descriptor).
-
setDescription
void setDescription(String description)
Sets the description of the resource (descriptor).- Parameters:
description- The description of the resource (descriptor).
-
-