com.atlassian.jira.issue.transport
Interface ActionParams

All Superinterfaces:
FieldParams
All Known Implementing Classes:
ActionParamsImpl, IssueNavigatorActionParams

public interface ActionParams
extends FieldParams

An interface that is off the same format as the Map returned by Action.getParameters. All keys are strings and all values are String arrays.


Method Summary
 String[] getAllValues()
           
 String getFirstValueForKey(String key)
           
 String getFirstValueForNullKey()
           
 String[] getValuesForKey(String key)
           
 String[] getValuesForNullKey()
           
 void put(String id, String[] values)
           
 
Methods inherited from interface com.atlassian.jira.issue.transport.FieldParams
containsKey, getAllKeys, getKeysAndValues, isEmpty
 

Method Detail

getAllValues

String[] getAllValues()

getValuesForNullKey

String[] getValuesForNullKey()

getValuesForKey

String[] getValuesForKey(String key)

getFirstValueForNullKey

String getFirstValueForNullKey()

getFirstValueForKey

String getFirstValueForKey(String key)

put

void put(String id,
         String[] values)


Copyright © 2002-2012 Atlassian. All Rights Reserved.