com.atlassian.jira.rest.client
Class GetCreateIssueMetadataOptions

java.lang.Object
  extended by com.atlassian.jira.rest.client.GetCreateIssueMetadataOptions

public class GetCreateIssueMetadataOptions
extends Object

Set of optional parameters for IssueRestClient.getCreateIssueMetadata(GetCreateIssueMetadataOptions, ProgressMonitor). GetCreateIssueMetadataOptionsBuilder is very useful for building objects of this class.

Since:
v1.0

Field Summary
static String EXPAND_PROJECTS_ISSUETYPES_FIELDS
           
 Iterable<String> expandos
           
 Iterable<Long> issueTypeIds
           
 Iterable<String> issueTypeNames
           
 Iterable<Long> projectIds
           
 Iterable<String> projectKeys
           
 
Constructor Summary
GetCreateIssueMetadataOptions(Iterable<String> expandos, Iterable<String> issueTypeNames, Iterable<Long> issueTypeIds, Iterable<String> projectKeys, Iterable<Long> projectIds)
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

EXPAND_PROJECTS_ISSUETYPES_FIELDS

public static final String EXPAND_PROJECTS_ISSUETYPES_FIELDS
See Also:
Constant Field Values

projectIds

@Nullable
public final Iterable<Long> projectIds

projectKeys

@Nullable
public final Iterable<String> projectKeys

issueTypeIds

@Nullable
public final Iterable<Long> issueTypeIds

issueTypeNames

@Nullable
public final Iterable<String> issueTypeNames

expandos

@Nullable
public final Iterable<String> expandos
Constructor Detail

GetCreateIssueMetadataOptions

public GetCreateIssueMetadataOptions(@Nullable
                                     Iterable<String> expandos,
                                     @Nullable
                                     Iterable<String> issueTypeNames,
                                     @Nullable
                                     Iterable<Long> issueTypeIds,
                                     @Nullable
                                     Iterable<String> projectKeys,
                                     @Nullable
                                     Iterable<Long> projectIds)
Parameters:
expandos - List of fields that should be expanded. See constants with prefix EXPAND_ in this class. Pass null to ignore.
issueTypeNames - List of issue types names to filter results. Pass null to ignore.
issueTypeIds - List of issue types Ids to filter results. Pass null to ignore.
projectKeys - List of projects keys used to filter results. Pass null to ignore.
projectIds - List of projects Ids used to filter results. Pass null to ignore.


Copyright © 2012 Atlassian Pty Ltd. All Rights Reserved.