public abstract class AbstractFieldOperationsHandler<T> extends Object implements RestFieldOperationsHandler
| Modifier and Type | Field and Description |
|---|---|
protected I18nHelper |
i18nHelper |
| Constructor and Description |
|---|
AbstractFieldOperationsHandler(I18nHelper i18nHelper) |
| Modifier and Type | Method and Description |
|---|---|
protected T |
applyOperation(IssueContext issueCtx,
Issue issue,
String fieldId,
StandardOperation operation,
T currentFieldValue,
JsonData operationValue,
ErrorCollection errors)
gets called (perhaps multiple times) to apply the given operation to the given currentValuye, retyrning the new
value
|
protected abstract void |
finaliseOperation(T finalValue,
IssueInputParameters parameters,
ErrorCollection errors)
takes the valuye returnd by a call to applyOperation() and puts it into the inputparams
|
protected abstract T |
getInitialCreateValue()
compute the "currentValue" to be passed to applyOperation()
|
protected abstract T |
getInitialValue(Issue issue,
ErrorCollection errors)
compute the "currentValue" to be passed to applyOperation()
|
protected T |
handleAddOperation(IssueContext issueCtx,
Issue issue,
String fieldId,
T currentFieldValue,
JsonData operationValue,
ErrorCollection errors) |
protected T |
handleRemoveOperation(IssueContext issueCtx,
Issue issue,
String fieldId,
T currentFieldValue,
JsonData operationValue,
ErrorCollection errors) |
protected T |
handleSetOperation(IssueContext issueCtx,
Issue issue,
String fieldId,
T currentFieldValue,
JsonData operationValue,
ErrorCollection errors) |
protected Long[] |
toLongIds(Collection<String> ids,
String fieldName,
ErrorCollection errors) |
ErrorCollection |
updateIssueInputParameters(IssueContext issueCtx,
Issue issue,
String fieldId,
IssueInputParameters inputParameters,
List<FieldOperationHolder> operations)
This method has to set the field value(s) in the
IssueInputParameters based on the operations. |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetSupportedOperationsprotected final I18nHelper i18nHelper
public AbstractFieldOperationsHandler(I18nHelper i18nHelper)
protected abstract T getInitialValue(Issue issue, ErrorCollection errors)
protected abstract T getInitialCreateValue()
protected abstract void finaliseOperation(T finalValue, IssueInputParameters parameters, ErrorCollection errors)
public ErrorCollection updateIssueInputParameters(IssueContext issueCtx, Issue issue, String fieldId, IssueInputParameters inputParameters, List<FieldOperationHolder> operations)
RestFieldOperationsHandlerIssueInputParameters based on the operations.
The issue service will validate the new field values in the IssueInputParameters, thus all permission checks are done by the issue service.updateIssueInputParameters in interface RestFieldOperationsHandlerissueCtx - the Issue Context , i.e. Project IssueTypeissue - the issue (may be null when creating an issue)fieldId - The Id of the field being processed.inputParameters - the inputparameters containing all updatd field values.operations - the operations to perform for this field. Has to be one of the supported operations.protected T applyOperation(IssueContext issueCtx, Issue issue, String fieldId, StandardOperation operation, T currentFieldValue, JsonData operationValue, ErrorCollection errors)
protected T handleRemoveOperation(IssueContext issueCtx, Issue issue, String fieldId, T currentFieldValue, JsonData operationValue, ErrorCollection errors)
protected T handleSetOperation(IssueContext issueCtx, Issue issue, String fieldId, T currentFieldValue, JsonData operationValue, ErrorCollection errors)
protected T handleAddOperation(IssueContext issueCtx, Issue issue, String fieldId, T currentFieldValue, JsonData operationValue, ErrorCollection errors)
protected Long[] toLongIds(Collection<String> ids, String fieldName, ErrorCollection errors)
Copyright © 2002-2017 Atlassian. All Rights Reserved.