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

Packages that use CreateException
com.atlassian.jira.bc.user   
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.plugins.mail.handlers   
com.atlassian.jira.project.version   
com.atlassian.jira.security   
com.atlassian.jira.service.util.handler   
com.atlassian.jira.upgrade.tasks   
com.atlassian.jira.user.util   
com.atlassian.jira.web.action.admin   
com.atlassian.jira.web.action.issue   
 

Uses of CreateException in com.atlassian.jira.bc.user
 

Methods in com.atlassian.jira.bc.user that throw CreateException
 com.atlassian.crowd.embedded.api.User DefaultUserService.createUserFromSignup(UserService.CreateUserValidationResult result)
           
 com.atlassian.crowd.embedded.api.User UserService.createUserFromSignup(UserService.CreateUserValidationResult result)
          Given a valid validation result, this will create the user using the details provided in the validation result.
 com.atlassian.crowd.embedded.api.User DefaultUserService.createUserNoNotification(UserService.CreateUserValidationResult result)
           
 com.atlassian.crowd.embedded.api.User UserService.createUserNoNotification(UserService.CreateUserValidationResult result)
          Given a valid validation result, this will create the user using the details provided in the validation result.
 com.atlassian.crowd.embedded.api.User DefaultUserService.createUserWithNotification(UserService.CreateUserValidationResult result)
           
 com.atlassian.crowd.embedded.api.User UserService.createUserWithNotification(UserService.CreateUserValidationResult result)
          Given a valid validation result, this will create the user using the details provided in the validation result.
 

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, com.atlassian.crowd.embedded.api.User currentUser)
           
 IssueUpdateBean SubTaskManager.changeParent(org.ofbiz.core.entity.GenericValue subTask, org.ofbiz.core.entity.GenericValue parentIssue, com.atlassian.crowd.embedded.api.User currentUser)
          Deprecated. Use SubTaskManager.changeParent(com.atlassian.jira.issue.Issue, com.atlassian.jira.issue.Issue, com.atlassian.crowd.embedded.api.User) instead. Since v5.0.
 IssueUpdateBean DefaultSubTaskManager.changeParent(Issue subTask, Issue parentIssue, com.atlassian.crowd.embedded.api.User currentUser)
           
 IssueUpdateBean SubTaskManager.changeParent(Issue subTask, Issue parentIssue, com.atlassian.crowd.embedded.api.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)
          Deprecated. Use ConstantsManager.insertIssueType(String, Long, String, String, String) instead. Since v5.0.
 void DefaultSubTaskManager.createSubTaskIssueLink(org.ofbiz.core.entity.GenericValue parentIssue, org.ofbiz.core.entity.GenericValue subTaskIssue, com.atlassian.crowd.embedded.api.User remoteUser)
           
 void SubTaskManager.createSubTaskIssueLink(org.ofbiz.core.entity.GenericValue parentIssue, org.ofbiz.core.entity.GenericValue subTaskIssue, com.atlassian.crowd.embedded.api.User remoteUser)
          Deprecated. Use SubTaskManager.createSubTaskIssueLink(com.atlassian.jira.issue.Issue, com.atlassian.jira.issue.Issue, com.atlassian.crowd.embedded.api.User) instead. Since v5.0.
 void DefaultSubTaskManager.createSubTaskIssueLink(Issue parentIssue, Issue subTaskIssue, com.atlassian.crowd.embedded.api.User remoteUser)
           
 void SubTaskManager.createSubTaskIssueLink(Issue parentIssue, Issue subTaskIssue, com.atlassian.crowd.embedded.api.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)
          Deprecated. Use SubTaskManager.insertSubTaskIssueType(String, Long, String, String) instead. Since v5.0.
 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()
           
 IssueType DefaultConstantsManager.insertIssueType(String name, Long sequence, String style, String description, String iconurl)
           
 IssueType ConstantsManager.insertIssueType(String name, Long sequence, String style, String description, String iconurl)
          Creates a new IssueType.
 IssueType DefaultSubTaskManager.insertSubTaskIssueType(String name, Long sequence, String description, String iconurl)
           
 IssueType SubTaskManager.insertSubTaskIssueType(String name, Long sequence, String description, String iconurl)
           
 

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<String,Object> fields)
          Deprecated. Use IssueManager.createIssueObject(String, Map) instead since v5.0.
 org.ofbiz.core.entity.GenericValue IssueManager.createIssue(com.atlassian.crowd.embedded.api.User remoteUser, Issue issue)
          Deprecated. Use IssueManager.createIssueObject(User, Issue) instead. Since v5.0
 org.ofbiz.core.entity.GenericValue IssueManager.createIssue(com.atlassian.crowd.embedded.api.User remoteUser, Map<String,Object> fields)
          Deprecated. Use IssueManager.createIssueObject(User, java.util.Map) instead. Since v5.0.
 Issue IssueManager.createIssueObject(String remoteUserName, Map<String,Object> fields)
          Creates an issue.
 Issue IssueManager.createIssueObject(com.atlassian.crowd.embedded.api.User remoteUser, Issue issue)
          Creates an issue.
 Issue IssueManager.createIssueObject(com.atlassian.crowd.embedded.api.User remoteUser, Map<String,Object> 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, com.atlassian.crowd.embedded.api.User remoteUser)
           
 void IssueLinkManager.createIssueLink(Long sourceIssueId, Long destinationIssueId, Long issueLinkTypeId, Long sequence, com.atlassian.crowd.embedded.api.User remoteUser)
          Constructs a new issuelink from the sourceIssueId to the destinationId and persists it.
 RemoteIssueLink DefaultRemoteIssueLinkManager.createRemoteIssueLink(RemoteIssueLink remoteIssueLink, com.atlassian.crowd.embedded.api.User user)
           
 RemoteIssueLink RemoteIssueLinkManager.createRemoteIssueLink(RemoteIssueLink remoteIssueLink, com.atlassian.crowd.embedded.api.User user)
          Creates the given remote issue link.
 

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<String,Object> fields)
          This method is here because this is a logical place for the "createIssue" method to be.
 org.ofbiz.core.entity.GenericValue DefaultIssueManager.createIssue(com.atlassian.crowd.embedded.api.User remoteUser, Issue issue)
           
 org.ofbiz.core.entity.GenericValue DefaultIssueManager.createIssue(com.atlassian.crowd.embedded.api.User remoteUser, Map<String,Object> fields)
          This function creates an issue in Jira.
 Issue DefaultIssueManager.createIssueObject(String remoteUserName, Map<String,Object> fields)
           
 Issue DefaultIssueManager.createIssueObject(com.atlassian.crowd.embedded.api.User remoteUser, Issue issue)
           
 Issue DefaultIssueManager.createIssueObject(com.atlassian.crowd.embedded.api.User remoteUser, Map<String,Object> fields)
           
 

Uses of CreateException in com.atlassian.jira.plugins.mail.handlers
 

Methods in com.atlassian.jira.plugins.mail.handlers that throw CreateException
 Issue DryRunMessageHandlerContext.createIssue(com.atlassian.crowd.embedded.api.User reporter, Issue issue)
           
 com.atlassian.crowd.embedded.api.User DryRunMessageHandlerContext.createUser(String username, String password, String emailAddress, String displayName, Integer userEventType)
           
 

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 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 AbstractPermissionManager.addPermission(int permissionsId, org.ofbiz.core.entity.GenericValue scheme, String parameter, String securityType)
          Adds a permission to the system
 void PermissionManager.addPermission(int permissionsId, org.ofbiz.core.entity.GenericValue scheme, String parameter, String securityType)
          Grants a permission to the system.
 boolean DefaultGlobalPermissionManager.addPermission(int permissionId, String group)
          Adds a global permission
 boolean GlobalPermissionManager.addPermission(int permissionType, String group)
          Grants a user group a global permission.
 

Uses of CreateException in com.atlassian.jira.service.util.handler
 

Methods in com.atlassian.jira.service.util.handler that throw CreateException
 Issue MessageHandlerContext.createIssue(com.atlassian.crowd.embedded.api.User reporter, Issue issue)
          Creates a new issue in JIRA or a dummy issue in dry run mode
 Issue DefaultMessageHandlerContext.createIssue(com.atlassian.crowd.embedded.api.User reporter, Issue issue)
           
 com.atlassian.crowd.embedded.api.User MessageHandlerContext.createUser(String username, String password, String email, String fullname, Integer userEventType)
          Creates user in JIRA or just dummy user if run in dry run mode
 com.atlassian.crowd.embedded.api.User DefaultMessageHandlerContext.createUser(String username, String password, String email, String fullname, Integer userEventType)
           
 

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.user.util
 

Methods in com.atlassian.jira.user.util that throw CreateException
 com.atlassian.crowd.embedded.api.User UserUtilImpl.createUserNoNotification(String username, String password, String emailAddress, String displayName)
           
 com.atlassian.crowd.embedded.api.User UserUtil.createUserNoNotification(String username, String password, String emailAddress, String displayName)
          Creates a User from supplied details.
 com.atlassian.crowd.embedded.api.User UserUtilImpl.createUserNoNotification(String username, String password, String emailAddress, String displayName, Long directoryId)
           
 com.atlassian.crowd.embedded.api.User UserUtil.createUserNoNotification(String username, String password, String emailAddress, String displayName, Long directoryId)
          Creates a User from supplied details.
 com.atlassian.crowd.embedded.api.User UserUtilImpl.createUserWithNotification(String username, String password, String email, String fullname, int userEventType)
           
 com.atlassian.crowd.embedded.api.User UserUtil.createUserWithNotification(String username, String password, String email, String fullname, int userEventType)
          Creates a User from supplied details.
 com.atlassian.crowd.embedded.api.User UserUtilImpl.createUserWithNotification(String username, String password, String email, String fullname, Long directoryId, int userEventType)
           
 com.atlassian.crowd.embedded.api.User UserUtil.createUserWithNotification(String username, String password, String email, String fullname, Long directoryId, int userEventType)
          Creates a User from supplied details.
 

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, com.atlassian.crowd.embedded.api.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-2012 Atlassian. All Rights Reserved.