Class MessageStoreMetaData
- java.lang.Object
-
- org.wso2.carbon.message.store.service.MessageStoreMetaData
-
public class MessageStoreMetaData extends Object
Instances of this class represents the MetaData of a Message Store
-
-
Constructor Summary
Constructors Constructor Description MessageStoreMetaData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getArtifactContainerName()
Check whether the store is deployed from artifact containerboolean
getIsEdited()
Check whether the store deployed from artifact container is edited through management consoleString
getName()
Get the name of the storevoid
setArtifactContainerName(String artifactContainerName)
Set whether the store is deployed from artifact containervoid
setIsEdited(boolean isEdited)
Set whether the store deployed from artifact container is edited through management consolevoid
setName(String name)
Set the store name as a metadata
-
-
-
Method Detail
-
getName
public String getName()
Get the name of the store- Returns:
- store name
-
setName
public void setName(String name)
Set the store name as a metadata- Parameters:
name
- store name
-
getArtifactContainerName
public String getArtifactContainerName()
Check whether the store is deployed from artifact container- Returns:
- true if store deployed from CApp, else false
-
setArtifactContainerName
public void setArtifactContainerName(String artifactContainerName)
Set whether the store is deployed from artifact container- Parameters:
artifactContainerName
- true if store deployed from artifact container, else false
-
getIsEdited
public boolean getIsEdited()
Check whether the store deployed from artifact container is edited through management console- Returns:
- true if the store is edited, else false
-
setIsEdited
public void setIsEdited(boolean isEdited)
Set whether the store deployed from artifact container is edited through management console- Parameters:
isEdited
- true if the store is edited, else false
-
-