com.atlassian.jira.issue.link
Interface IssueLinkTypeManager

All Known Implementing Classes:
DefaultIssueLinkTypeManager

public interface IssueLinkTypeManager

Manages IssueLinkTypes.


Method Summary
 void createIssueLinkType(String name, String outward, String inward, String style)
           
 IssueLinkType getIssueLinkType(Long id)
           
 Collection getIssueLinkTypes()
           
 Collection getIssueLinkTypesByName(String name)
          Returns a collection of IssueLinkTypes with the given name.
 Collection getIssueLinkTypesByStyle(String style)
           
 void removeIssueLinkType(Long issueLinkTypeId)
          This method removed the issue link type from the database
WARNING: This method DOES NOT check if there are any existing issue links of this issue link type.
 void updateIssueLinkType(IssueLinkType issueLinkType, String name, String outward, String inward)
           
 

Method Detail

createIssueLinkType

void createIssueLinkType(String name,
                         String outward,
                         String inward,
                         String style)

updateIssueLinkType

void updateIssueLinkType(IssueLinkType issueLinkType,
                         String name,
                         String outward,
                         String inward)

removeIssueLinkType

void removeIssueLinkType(Long issueLinkTypeId)
This method removed the issue link type from the database
WARNING: This method DOES NOT check if there are any existing issue links of this issue link type. It simply removes the record from the datastore. Use IssueLinkTypeDestroyer to 'nicely' remove the issue link type taking care of exiting issue links.

Parameters:
issueLinkTypeId - the id of the IssueLinkType to remove

getIssueLinkTypes

Collection getIssueLinkTypes()

getIssueLinkType

IssueLinkType getIssueLinkType(Long id)

getIssueLinkTypesByName

Collection getIssueLinkTypesByName(String name)
Returns a collection of IssueLinkTypes with the given name. Actually this collection should always have either one or zero elements - it is illegal to have two link types with the same name.

Parameters:
name - The name to search for Issue Link Types by.
Returns:
a collection of IssueLinkTypes, or an empty collection if name isn't a link type. TODO: Reconsider this method. The GUI enforces unique names.

getIssueLinkTypesByStyle

Collection getIssueLinkTypesByStyle(String style)


Copyright © 2002-2008 Atlassian. All Rights Reserved.