Uses of Class
com.atlassian.jira.exception.CreateException

Packages that use CreateException
com.atlassian.jira.action.project   
com.atlassian.jira.config   
com.atlassian.jira.external   
com.atlassian.jira.issue   
com.atlassian.jira.issue.link   
com.atlassian.jira.issue.managers   
com.atlassian.jira.project.version   
com.atlassian.jira.security   
com.atlassian.jira.upgrade.tasks   
com.atlassian.jira.upgrade.tasks.professional   
com.atlassian.jira.util   
com.atlassian.jira.web.action.admin   
com.atlassian.jira.web.action.issue   
 

Uses of CreateException in com.atlassian.jira.action.project
 

Methods in com.atlassian.jira.action.project that throw CreateException
static org.ofbiz.core.entity.GenericValue ProjectUtils.createProject(Map fields)
           
 

Uses of CreateException in com.atlassian.jira.config
 

Methods in com.atlassian.jira.config that throw CreateException
 IssueUpdateBean DefaultSubTaskManager.changeParent(org.ofbiz.core.entity.GenericValue subTask, org.ofbiz.core.entity.GenericValue newParentIssue, User currentUser)
           
 IssueUpdateBean SubTaskManager.changeParent(org.ofbiz.core.entity.GenericValue subTask, org.ofbiz.core.entity.GenericValue parentIssue, User currentUser)
          Change the parent of the given subtask to the given new parent on behalf of the given user.
 org.ofbiz.core.entity.GenericValue DefaultConstantsManager.createIssueType(String name, Long sequence, String style, String description, String iconurl)
           
 org.ofbiz.core.entity.GenericValue ConstantsManager.createIssueType(String name, Long sequence, String style, String description, String iconurl)
          Note this metod does not validate the input - i.e.
 void DefaultSubTaskManager.createSubTaskIssueLink(org.ofbiz.core.entity.GenericValue parentIssue, org.ofbiz.core.entity.GenericValue subTaskIssue, User remoteUser)
           
 void SubTaskManager.createSubTaskIssueLink(org.ofbiz.core.entity.GenericValue parentIssue, org.ofbiz.core.entity.GenericValue subTaskIssue, User remoteUser)
           
 void DefaultSubTaskManager.createSubTaskIssueLink(Issue parentIssue, Issue subTaskIssue, User remoteUser)
           
 void SubTaskManager.createSubTaskIssueLink(Issue parentIssue, Issue subTaskIssue, User remoteUser)
           
 void DisabledSubTaskManager.createSubTaskIssueLink(Issue parentIssue, Issue subTaskIssue, User remoteUser)
           
 org.ofbiz.core.entity.GenericValue DefaultSubTaskManager.createSubTaskIssueType(String name, Long sequence, String description, String iconurl)
           
 org.ofbiz.core.entity.GenericValue SubTaskManager.createSubTaskIssueType(String name, Long sequence, String description, String iconurl)
           
 void DefaultSubTaskManager.enableSubTasks()
          Turn on sub-tasks by creating a sub-task issue link type and a default sub-task issue type
 void SubTaskManager.enableSubTasks()
           
 void DisabledSubTaskManager.enableSubTasks()
           
 

Uses of CreateException in com.atlassian.jira.external
 

Methods in com.atlassian.jira.external that throw CreateException
protected  org.ofbiz.core.entity.GenericValue ExternalUtils.createIssue(Map fields)
           
 

Uses of CreateException in com.atlassian.jira.issue
 

Methods in com.atlassian.jira.issue that throw CreateException
 org.ofbiz.core.entity.GenericValue IssueManager.createIssue(String remoteUserName, Map fields)
          Creates an issue.
 org.ofbiz.core.entity.GenericValue IssueManager.createIssue(User remoteUser, Issue issue)
          Persists a new issue.
 org.ofbiz.core.entity.GenericValue IssueManager.createIssue(User remoteUser, Map fields)
          Creates an issue.
 

Uses of CreateException in com.atlassian.jira.issue.link
 

Methods in com.atlassian.jira.issue.link that throw CreateException
 void DefaultIssueLinkManager.createIssueLink(Long sourceId, Long destinationId, Long issueLinkTypeId, Long sequence, User remoteUser)
           
 void IssueLinkManager.createIssueLink(Long sourceIssueId, Long destinationIssueId, Long issueLinkTypeId, Long sequence, User remoteUser)
          Constructs a new issuelink from the sourceIssueId to the destinationId and persists it.
 

Uses of CreateException in com.atlassian.jira.issue.managers
 

Methods in com.atlassian.jira.issue.managers that throw CreateException
 org.ofbiz.core.entity.GenericValue DefaultIssueManager.createIssue(String remoteUserName, Map fields)
          This method is here because this is a logical place for the "createIssue" method to be.
 org.ofbiz.core.entity.GenericValue CachingIssueManager.createIssue(String remoteUserName, Map fields)
           
 org.ofbiz.core.entity.GenericValue DefaultIssueManager.createIssue(User remoteUser, Issue issue)
           
 org.ofbiz.core.entity.GenericValue CachingIssueManager.createIssue(User remoteUser, Issue issue)
           
 org.ofbiz.core.entity.GenericValue DefaultIssueManager.createIssue(User remoteUser, Map fields)
          This function creates an issue in Jira.
 org.ofbiz.core.entity.GenericValue CachingIssueManager.createIssue(User remoteUser, Map fields)
           
 

Uses of CreateException in com.atlassian.jira.project.version
 

Methods in com.atlassian.jira.project.version that throw CreateException
 Version DefaultVersionManager.createVersion(String name, Date releaseDate, String description, org.ofbiz.core.entity.GenericValue project, Long scheduleAfterVersion)
           
 Version VersionManager.createVersion(String name, Date releaseDate, String description, org.ofbiz.core.entity.GenericValue project, Long scheduleAfterVersion)
          Deprecated. now use #createVersion with projectId instead of generic value
 Version DefaultVersionManager.createVersion(String name, Date releaseDate, String description, Long projectId, Long scheduleAfterVersion)
           
 Version VersionManager.createVersion(String name, Date releaseDate, String description, Long projectId, Long scheduleAfterVersion)
          Creates a new Version object.
 

Uses of CreateException in com.atlassian.jira.security
 

Methods in com.atlassian.jira.security that throw CreateException
 void PermissionManager.addPermission(int permissionsId, org.ofbiz.core.entity.GenericValue scheme, String parameter, String securityType)
          Adds a permission to the system.
 void AbstractPermissionManager.addPermission(int permissionsId, org.ofbiz.core.entity.GenericValue scheme, String parameter, String securityType)
          Adds a permission to the system
 boolean DefaultGlobalPermissionManager.addPermission(int permissionId, String group)
          Adds a global permission
 boolean GlobalPermissionManager.addPermission(int permissionType, String group)
          Adds a global permission
 

Uses of CreateException in com.atlassian.jira.upgrade.tasks
 

Methods in com.atlassian.jira.upgrade.tasks that throw CreateException
 void UpgradeTask_Build47.addOldGlobalPermissionsToScheme(SchemeManager psm, int permType, org.ofbiz.core.entity.GenericValue scheme)
          Given a scheme, add the old global permissions to it.
 void UpgradeTask_Build47.createProjectSchemes(SchemeManager psm, org.ofbiz.core.entity.GenericValue defaultScheme)
          Create schemes based on project specific permissions.
 

Uses of CreateException in com.atlassian.jira.upgrade.tasks.professional
 

Methods in com.atlassian.jira.upgrade.tasks.professional that throw CreateException
 void UpgradeTask_Build47.addOldGlobalPermissionsToScheme(SchemeManager psm, int permType, org.ofbiz.core.entity.GenericValue scheme)
          Given a scheme, add the old global permissions to it.
 

Uses of CreateException in com.atlassian.jira.util
 

Methods in com.atlassian.jira.util that throw CreateException
protected  org.ofbiz.core.entity.GenericValue MantisImportBean.importIssue(ResultSet resultSet, Connection conn, ResultSet textResultSet, String projectName)
          Import an issue from Mantis
protected  void MantisImportBean.importIssues(Connection conn, String projectName, int projectId)
           
 

Uses of CreateException in com.atlassian.jira.web.action.admin
 

Methods in com.atlassian.jira.web.action.admin that throw CreateException
protected  void GlobalPermissions.createPermission(int permType, Group group)
           
 

Uses of CreateException in com.atlassian.jira.web.action.issue
 

Methods in com.atlassian.jira.web.action.issue that throw CreateException
protected  String MoveSubTaskParent.doExecute()
          Important do not change the workflow as there is validation for the parent issue and you don't want to delete the link and find out that there is an error in the parent issue...
 



Copyright © 2002-2008 Atlassian. All Rights Reserved.