com.atlassian.greenhopper.web.rapid.issue.fields
Class NumberCustomFieldEntryFactory

java.lang.Object
  extended by com.atlassian.greenhopper.web.rapid.issue.fields.NumberCustomFieldEntryFactory
All Implemented Interfaces:
ComplexEditableFieldEntryFactory, FieldEntryFactory, SimpleEditableFieldEntryFactory

public class NumberCustomFieldEntryFactory
extends java.lang.Object
implements FieldEntryFactory, SimpleEditableFieldEntryFactory, ComplexEditableFieldEntryFactory

Number custom fields. These are ComplexEditableFieldEntryFactory because we have to do some pre-validation on update to ensure user does not enter negative numbers. However, we are also SimpleEditableFieldEntryFactory so that we can reuse FieldHelper.updateField(com.atlassian.crowd.embedded.api.User, com.atlassian.jira.issue.Issue, SimpleEditableFieldEntryFactory, String).


Constructor Summary
NumberCustomFieldEntryFactory(com.atlassian.jira.issue.fields.CustomField customField, FieldHelper fieldHelper)
           
 
Method Summary
 void addIssueInputParameters(com.atlassian.jira.issue.IssueInputParametersImpl issueInputParameters, java.lang.String newValue)
          Modify the parameters accordingly to register this field's update.
 FieldEntry createEditEntry(I18n2 i18n, com.atlassian.jira.issue.Issue issue, com.atlassian.crowd.embedded.api.User user)
           
 FieldEntry createViewEntry(I18n2 i18n, com.atlassian.jira.issue.Issue issue, com.atlassian.crowd.embedded.api.User user)
           
 java.lang.String getId()
           
 boolean isFieldValid(com.atlassian.jira.issue.Issue issue)
           
 ServiceOutcome<java.lang.Void> updateField(com.atlassian.crowd.embedded.api.User user, com.atlassian.jira.issue.Issue issue, java.lang.String newValue)
          Field will update the issue itself to the new value.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NumberCustomFieldEntryFactory

public NumberCustomFieldEntryFactory(com.atlassian.jira.issue.fields.CustomField customField,
                                     FieldHelper fieldHelper)
Method Detail

getId

public java.lang.String getId()
Specified by:
getId in interface FieldEntryFactory

createViewEntry

public FieldEntry createViewEntry(I18n2 i18n,
                                  com.atlassian.jira.issue.Issue issue,
                                  com.atlassian.crowd.embedded.api.User user)
Specified by:
createViewEntry in interface FieldEntryFactory

createEditEntry

public FieldEntry createEditEntry(I18n2 i18n,
                                  com.atlassian.jira.issue.Issue issue,
                                  com.atlassian.crowd.embedded.api.User user)
Specified by:
createEditEntry in interface FieldEntryFactory

isFieldValid

public boolean isFieldValid(com.atlassian.jira.issue.Issue issue)
Specified by:
isFieldValid in interface FieldEntryFactory

addIssueInputParameters

public void addIssueInputParameters(com.atlassian.jira.issue.IssueInputParametersImpl issueInputParameters,
                                    java.lang.String newValue)
Description copied from interface: SimpleEditableFieldEntryFactory
Modify the parameters accordingly to register this field's update.

Specified by:
addIssueInputParameters in interface SimpleEditableFieldEntryFactory
Parameters:
issueInputParameters - the parameters to modify
newValue - the new value

updateField

public ServiceOutcome<java.lang.Void> updateField(com.atlassian.crowd.embedded.api.User user,
                                                  com.atlassian.jira.issue.Issue issue,
                                                  java.lang.String newValue)
Description copied from interface: ComplexEditableFieldEntryFactory
Field will update the issue itself to the new value.

Specified by:
updateField in interface ComplexEditableFieldEntryFactory
Parameters:
user - the user performing the update
issue - the issue to be updated
newValue - the new value
Returns:
the outcome - may contain errors


Copyright © 2007-2014 Atlassian. All Rights Reserved.