Uses of Class
com.atlassian.jira.rpc.soap.beans.RemoteProjectRole

Packages that use RemoteProjectRole
com.atlassian.jira.rpc.soap   
com.atlassian.jira.rpc.soap.beans   
com.atlassian.jira.rpc.soap.service   
 

Uses of RemoteProjectRole in com.atlassian.jira.rpc.soap
 

Methods in com.atlassian.jira.rpc.soap that return RemoteProjectRole
 RemoteProjectRole JiraSoapServiceImpl.createProjectRole(java.lang.String token, RemoteProjectRole projectRole)
           
 RemoteProjectRole JiraSoapService.createProjectRole(java.lang.String token, RemoteProjectRole projectRole)
           
 RemoteProjectRole JiraSoapServiceImpl.getProjectRole(java.lang.String token, java.lang.Long id)
           
 RemoteProjectRole JiraSoapService.getProjectRole(java.lang.String token, java.lang.Long id)
           
 RemoteProjectRole[] JiraSoapServiceImpl.getProjectRoles(java.lang.String token)
           
 RemoteProjectRole[] JiraSoapService.getProjectRoles(java.lang.String token)
           
 

Methods in com.atlassian.jira.rpc.soap with parameters of type RemoteProjectRole
 void JiraSoapServiceImpl.addActorsToProjectRole(java.lang.String token, java.lang.String[] actors, RemoteProjectRole projectRole, RemoteProject project, java.lang.String actorType)
           
 void JiraSoapService.addActorsToProjectRole(java.lang.String token, java.lang.String[] actors, RemoteProjectRole projectRole, RemoteProject project, java.lang.String actorType)
           
 void JiraSoapServiceImpl.addDefaultActorsToProjectRole(java.lang.String token, java.lang.String[] actorNames, RemoteProjectRole projectRole, java.lang.String type)
           
 void JiraSoapService.addDefaultActorsToProjectRole(java.lang.String token, java.lang.String[] actors, RemoteProjectRole projectRole, java.lang.String type)
           
 RemoteProjectRole JiraSoapServiceImpl.createProjectRole(java.lang.String token, RemoteProjectRole projectRole)
           
 RemoteProjectRole JiraSoapService.createProjectRole(java.lang.String token, RemoteProjectRole projectRole)
           
 void JiraSoapServiceImpl.deleteProjectRole(java.lang.String token, RemoteProjectRole projectRole, boolean confirm)
           
 void JiraSoapService.deleteProjectRole(java.lang.String token, RemoteProjectRole projectRole, boolean confirm)
           
 RemoteScheme[] JiraSoapServiceImpl.getAssociatedNotificationSchemes(java.lang.String token, RemoteProjectRole projectRole)
           
 RemoteScheme[] JiraSoapService.getAssociatedNotificationSchemes(java.lang.String token, RemoteProjectRole projectRole)
           
 RemoteScheme[] JiraSoapServiceImpl.getAssociatedPermissionSchemes(java.lang.String token, RemoteProjectRole projectRole)
           
 RemoteScheme[] JiraSoapService.getAssociatedPermissionSchemes(java.lang.String token, RemoteProjectRole projectRole)
           
 RemoteRoleActors JiraSoapServiceImpl.getDefaultRoleActors(java.lang.String token, RemoteProjectRole projectRole)
           
 RemoteRoleActors JiraSoapService.getDefaultRoleActors(java.lang.String token, RemoteProjectRole projectRole)
           
 RemoteProjectRoleActors JiraSoapServiceImpl.getProjectRoleActors(java.lang.String token, RemoteProjectRole projectRole, RemoteProject project)
           
 RemoteProjectRoleActors JiraSoapService.getProjectRoleActors(java.lang.String token, RemoteProjectRole projectRole, RemoteProject project)
           
 void JiraSoapServiceImpl.removeActorsFromProjectRole(java.lang.String token, java.lang.String[] actors, RemoteProjectRole projectRole, RemoteProject project, java.lang.String actorType)
           
 void JiraSoapService.removeActorsFromProjectRole(java.lang.String token, java.lang.String[] actors, RemoteProjectRole projectRole, RemoteProject project, java.lang.String actorType)
           
 void JiraSoapServiceImpl.removeDefaultActorsFromProjectRole(java.lang.String token, java.lang.String[] actors, RemoteProjectRole projectRole, java.lang.String actorType)
           
 void JiraSoapService.removeDefaultActorsFromProjectRole(java.lang.String token, java.lang.String[] actors, RemoteProjectRole projectRole, java.lang.String actorType)
           
 void JiraSoapServiceImpl.updateProjectRole(java.lang.String token, RemoteProjectRole projectRole)
           
 void JiraSoapService.updateProjectRole(java.lang.String token, RemoteProjectRole projectRole)
           
 

Uses of RemoteProjectRole in com.atlassian.jira.rpc.soap.beans
 

Methods in com.atlassian.jira.rpc.soap.beans that return RemoteProjectRole
 RemoteProjectRole RemoteRoleActors.getProjectRole()
           
 RemoteProjectRole RemoteRoleActor.getProjectRole()
           
 

Constructors in com.atlassian.jira.rpc.soap.beans with parameters of type RemoteProjectRole
RemoteProjectRoleActors(RemoteProject project, RemoteProjectRole projectRole, RemoteRoleActor[] roleActors)
           
RemoteRoleActor(RemoteProjectRole remoteProjectRole, java.lang.String descriptor, java.lang.String type, java.lang.String parameter, RemoteUser[] users)
           
RemoteRoleActors(RemoteProjectRole remoteProjectRole, RemoteRoleActor[] roleActors)
           
 

Uses of RemoteProjectRole in com.atlassian.jira.rpc.soap.service
 

Methods in com.atlassian.jira.rpc.soap.service that return RemoteProjectRole
 RemoteProjectRole ProjectRoleServiceImpl.createProjectRole(com.atlassian.crowd.embedded.api.User currentUser, RemoteProjectRole projectRole)
           
 RemoteProjectRole ProjectRoleService.createProjectRole(com.atlassian.crowd.embedded.api.User currentUser, RemoteProjectRole projectRole)
          Will create the project role based off the passed in projectRole.getName(), projectRole.getDescription() and checking the currentUser has the correct permissions to perform the create operation.
 RemoteProjectRole ProjectRoleServiceImpl.getProjectRole(com.atlassian.crowd.embedded.api.User currentUser, java.lang.Long id)
           
 RemoteProjectRole ProjectRoleService.getProjectRole(com.atlassian.crowd.embedded.api.User currentUser, java.lang.Long id)
          Will return the project role based off the passed in id, and checking the currentUser has the correct permissions to perform the operation.
 RemoteProjectRole[] ProjectRoleServiceImpl.getProjectRoles(com.atlassian.crowd.embedded.api.User currentUser)
           
 RemoteProjectRole[] ProjectRoleService.getProjectRoles(com.atlassian.crowd.embedded.api.User currentUser)
          Get all the ProjectRoles available in JIRA.
 

Methods in com.atlassian.jira.rpc.soap.service with parameters of type RemoteProjectRole
 void ProjectRoleServiceImpl.addActorsToProjectRole(com.atlassian.crowd.embedded.api.User currentUser, java.lang.String[] actors, RemoteProjectRole projectRole, RemoteProject project, java.lang.String actorType)
           
 void ProjectRoleService.addActorsToProjectRole(com.atlassian.crowd.embedded.api.User currentUser, java.lang.String[] actors, RemoteProjectRole projectRole, RemoteProject project, java.lang.String actorType)
          Will add project role actor associations based off the passed in actors and checking the currentUser has the correct permissions to perform the update operation.
 void ProjectRoleServiceImpl.addDefaultActorsToProjectRole(com.atlassian.crowd.embedded.api.User currentUser, java.lang.String[] actorNames, RemoteProjectRole projectRole, java.lang.String type)
           
 void ProjectRoleService.addDefaultActorsToProjectRole(com.atlassian.crowd.embedded.api.User currentUser, java.lang.String[] actors, RemoteProjectRole projectRole, java.lang.String type)
          Will add default role actor associations based off the passed in actors and checking the currentUser has the correct permissions to perform the update operation.
 RemoteProjectRole ProjectRoleServiceImpl.createProjectRole(com.atlassian.crowd.embedded.api.User currentUser, RemoteProjectRole projectRole)
           
 RemoteProjectRole ProjectRoleService.createProjectRole(com.atlassian.crowd.embedded.api.User currentUser, RemoteProjectRole projectRole)
          Will create the project role based off the passed in projectRole.getName(), projectRole.getDescription() and checking the currentUser has the correct permissions to perform the create operation.
 void ProjectRoleServiceImpl.deleteProjectRole(com.atlassian.crowd.embedded.api.User currentUser, RemoteProjectRole projectRole, boolean confirm)
           
 void ProjectRoleService.deleteProjectRole(com.atlassian.crowd.embedded.api.User currentUser, RemoteProjectRole projectRole, boolean confirm)
          Will delete the project role based off the passed in projectRole and checking the currentUser has the correct permissions to perform the delete operation.
 RemoteScheme[] ProjectRoleServiceImpl.getAssociatedNotificationSchemes(com.atlassian.crowd.embedded.api.User currentUser, RemoteProjectRole projectRole)
           
 RemoteScheme[] ProjectRoleService.getAssociatedNotificationSchemes(com.atlassian.crowd.embedded.api.User currentUser, RemoteProjectRole projectRole)
          Will get all notification scheme's that the specified projectRole is currently used in.
 RemoteScheme[] ProjectRoleServiceImpl.getAssociatedPermissionSchemes(com.atlassian.crowd.embedded.api.User currentUser, RemoteProjectRole projectRole)
           
 RemoteScheme[] ProjectRoleService.getAssociatedPermissionSchemes(com.atlassian.crowd.embedded.api.User currentUser, RemoteProjectRole projectRole)
          Will get all permission scheme's that the specified projectRole is currently used in.
 RemoteRoleActors ProjectRoleServiceImpl.getDefaultRoleActors(com.atlassian.crowd.embedded.api.User currentUser, RemoteProjectRole projectRole)
           
 RemoteRoleActors ProjectRoleService.getDefaultRoleActors(com.atlassian.crowd.embedded.api.User currentUser, RemoteProjectRole projectRole)
          Will return the project role actors based off the passed in projectRole checking the currentUser has the correct permissions to perform the get operation.
 RemoteProjectRoleActors ProjectRoleServiceImpl.getProjectRoleActors(com.atlassian.crowd.embedded.api.User currentUser, RemoteProjectRole projectRole, RemoteProject project)
           
 RemoteProjectRoleActors ProjectRoleService.getProjectRoleActors(com.atlassian.crowd.embedded.api.User currentUser, RemoteProjectRole projectRole, RemoteProject project)
          Will return the project role actors based off the passed in projectRole and project checking the currentUser has the correct permissions to perform the get operation.
 void ProjectRoleServiceImpl.removeActorsFromProjectRole(com.atlassian.crowd.embedded.api.User currentUser, java.lang.String[] actors, RemoteProjectRole projectRole, RemoteProject project, java.lang.String actorType)
           
 void ProjectRoleService.removeActorsFromProjectRole(com.atlassian.crowd.embedded.api.User currentUser, java.lang.String[] actors, RemoteProjectRole projectRole, RemoteProject project, java.lang.String actorType)
          Will remove project role actor associations based off the passed in actors and checking the currentUser has the correct permissions to perform the update operation.
 void ProjectRoleServiceImpl.removeDefaultActorsFromProjectRole(com.atlassian.crowd.embedded.api.User currentUser, java.lang.String[] actors, RemoteProjectRole projectRole, java.lang.String actorType)
           
 void ProjectRoleService.removeDefaultActorsFromProjectRole(com.atlassian.crowd.embedded.api.User currentUser, java.lang.String[] actors, RemoteProjectRole projectRole, java.lang.String actorType)
          Will remove default role actor associations based off the passed in actors and checking the currentUser has the correct permissions to perform the update operation.
 void ProjectRoleServiceImpl.updateProjectRole(com.atlassian.crowd.embedded.api.User currentUser, RemoteProjectRole projectRole)
           
 void ProjectRoleService.updateProjectRole(com.atlassian.crowd.embedded.api.User currentUser, RemoteProjectRole projectRole)
          Will update the project role based off the passed in projectRole and checking the currentUser has the correct permissions to perform the update operation.
 



Copyright © 2004-2011 Atlassian. All Rights Reserved.