com.atlassian.greenhopper.service.issue.callback
Interface IssueFieldValueProvider

All Known Implementing Classes:
IssueFieldValueProviderImpl

public interface IssueFieldValueProvider

Provides access to field values for issues captured from Lucene.


Method Summary
 java.lang.String get(java.lang.String key)
          Get the value for a given key
 java.util.List<java.lang.String> getList(java.lang.String key)
          Get a list of values for a given key
 boolean has(java.lang.String key)
          Is there a value for the given key
 

Method Detail

has

boolean has(java.lang.String key)
Is there a value for the given key


get

java.lang.String get(java.lang.String key)
Get the value for a given key

Returns:
null or the value, in case of a list the first value in the list

getList

java.util.List<java.lang.String> getList(java.lang.String key)
Get a list of values for a given key

Returns:
a list of values, never null


Copyright © 2007-2013 Atlassian. All Rights Reserved.