Interface IJEMHFieldProcessorContext
-
public interface IJEMHFieldProcessorContext
Context within which a Field Processor runs, provides access to a JEMH extracted body, but allows field processors to use it or not- Author:
- andy
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map<String,Object>
getAdditionalMapValues()
com.javahollic.jira.emh.api.ao.IJEMHFPAuditEventEntiyDef
getAuditEvent()
String
getBody()
IJEMHRuntimeConfig
getConfig()
int
getID()
javax.mail.Message
getMessage()
com.atlassian.jira.issue.Issue
getRelatedIssue()
IJEMHInboundReport
getReport()
-
-
-
Method Detail
-
getID
int getID()
- Returns:
- unique one-up ID relating to the JEMH Profile that this context is associated with
-
getConfig
IJEMHRuntimeConfig getConfig()
- Returns:
- the runtime priofile configuration
-
getRelatedIssue
com.atlassian.jira.issue.Issue getRelatedIssue()
- Returns:
- the related issue
-
getMessage
javax.mail.Message getMessage()
- Returns:
- the javax.mail.Message
-
getBody
String getBody()
- Returns:
- email body
-
getAuditEvent
com.javahollic.jira.emh.api.ao.IJEMHFPAuditEventEntiyDef getAuditEvent()
- Returns:
- audit event
-
getReport
IJEMHInboundReport getReport()
- Returns:
- the Report to add more detailed logging
-
-