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