jira4r-19 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/LICENSE ADDED
@@ -0,0 +1,14 @@
1
+
2
+ Copyright 2006 Codehaus Foundation
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
data/NOTICE ADDED
@@ -0,0 +1,3 @@
1
+ Codehaus JIRA4R
2
+
3
+ Copyright 2007-2008 The Codehaus Foundation
data/README.txt ADDED
@@ -0,0 +1,12 @@
1
+ = Prerequisites =
2
+ SVN HEAD version of SOAP4R (http://dev.ctor.org/soap4r) is required.
3
+
4
+ = Build =
5
+ gem build jira4r.gemspec
6
+
7
+ = Installation
8
+
9
+ gem install *.gem
10
+
11
+ sudo gem install *.gem
12
+
data/Rakefile ADDED
@@ -0,0 +1,131 @@
1
+ require 'net/http'
2
+ require 'fileutils'
3
+ require 'rake/clean'
4
+ require 'logger'
5
+
6
+ begin
7
+ require 'rubygems'
8
+ require 'rake/gempackagetask'
9
+ rescue Exception
10
+ nil
11
+ end
12
+
13
+ require 'wsdl/soap/wsdl2ruby'
14
+
15
+ logger = Logger.new(STDERR)
16
+ logger.level = Logger::INFO
17
+
18
+
19
+ desc "gets the wsdl and generates the classes"
20
+ task :default => [:generate]
21
+
22
+
23
+
24
+ desc "gets the wsdl files for JIRA services"
25
+ task :getwsdl do
26
+ versions().each { |version|
27
+ save(getWsdlFileName(version), get_file("test.jira.codehaus.org", "/rpc/soap/jirasoapservice-v#{version}?wsdl"))
28
+ }
29
+ end
30
+
31
+ task :build_gem do
32
+ system("gem build jira4r.gemspec")
33
+ end
34
+
35
+ task :clean do
36
+ File.unlink("wsdl/jirasoapservice-v2.wsdl")
37
+ File.unlink("lib/jira4r/v2/jiraService.rb")
38
+ File.unlink("lib/jira4r/v2/jiraServiceDriver.rb")
39
+ File.unlink("lib/jira4r/v2/jiraServiceMappingRegistry.rb")
40
+ end
41
+
42
+ task :install_gem do
43
+ system("gem install *.gem")
44
+ end
45
+
46
+ task :deploy_gem do
47
+ system("scp *.gem codehaus03:/home/projects/jira4r/snapshots.dist/distributions/")
48
+ end
49
+
50
+ desc "generate the wsdl"
51
+ task :generate do
52
+ versions().each { |version|
53
+ wsdl = getWsdlFileName(version)
54
+ basedir = "lib/jira4r/v#{version}"
55
+ mkdir_p basedir
56
+
57
+ if not File.exist?(wsdl)
58
+ raise "WSDL does not exist: #{wsdl}"
59
+ end
60
+ wsdl_url = "file://#{File.expand_path(wsdl)}"
61
+
62
+ # Create the server
63
+ worker = WSDL::SOAP::WSDL2Ruby.new
64
+ worker.logger = logger
65
+ worker.location = wsdl_url
66
+ worker.basedir = basedir
67
+ worker.opt['force'] = true
68
+ worker.opt['classdef'] = "jiraService"
69
+ worker.opt['module_path'] ="Jira4R::V#{version}"
70
+
71
+ worker.opt['mapping_registry'] = true
72
+ #worker.run
73
+
74
+ #Create the driver
75
+ #worker = WSDL::SOAP::WSDL2Ruby.new
76
+ #worker.logger = logger
77
+ #worker.location = wsdl_url
78
+ #worker.basedir = basedir
79
+ #worker.opt['force'] = true
80
+ #worker.opt['module_path'] = "Jira4R::V#{version}"
81
+
82
+ worker.opt['driver'] = "JiraSoapService"
83
+ worker.run
84
+ }
85
+ end
86
+
87
+ def versions
88
+ [ 2 ]
89
+ end
90
+
91
+ def get_file(host, path)
92
+ puts "getting http://#{host}#{path}"
93
+ http = Net::HTTP.new(host)
94
+ http.start { |w| w.get2(path).body }
95
+ end
96
+
97
+ def getWsdlFileName(vName)
98
+ "wsdl/jirasoapservice-v#{vName}.wsdl"
99
+ end
100
+
101
+
102
+ # Saves this document to the specified @var path.
103
+ # doesn't create the file if contains markup for 404 page
104
+ def save( path, content )
105
+ File::open(path, 'w') { | f |
106
+ f.write( content )
107
+ }
108
+ end
109
+
110
+ def fix_soap_files(version)
111
+ fix_require("lib/jira4r/v#{version}/jiraServiceMappingRegistry.rb")
112
+ fix_require("lib/jira4r/v#{version}/JiraSoapServiceDriver.rb")
113
+ end
114
+
115
+ def fix_require(filename)
116
+ content = ""
117
+ File.open(filename) { |io|
118
+ content = io.read()
119
+
120
+ content = fix_content(content, 'jiraService')
121
+ content = fix_content(content, 'jiraServiceMappingRegistry')
122
+ }
123
+
124
+ File.open(filename, "w") { |io|
125
+ io.write(content)
126
+ }
127
+ end
128
+
129
+ def fix_content(content, name)
130
+ return content.gsub("require '#{name}.rb'", "require File.dirname(__FILE__) + '/#{name}.rb'")
131
+ end
@@ -0,0 +1,34 @@
1
+ ################################################################################
2
+ # Copyright 2007 Codehaus Foundation #
3
+ # #
4
+ # Licensed under the Apache License, Version 2.0 (the "License"); #
5
+ # you may not use this file except in compliance with the License. #
6
+ # You may obtain a copy of the License at #
7
+ # #
8
+ # http://www.apache.org/licenses/LICENSE-2.0 #
9
+ # #
10
+ # Unless required by applicable law or agreed to in writing, software #
11
+ # distributed under the License is distributed on an "AS IS" BASIS, #
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
13
+ # See the License for the specific language governing permissions and #
14
+ # limitations under the License. #
15
+ ################################################################################
16
+
17
+ #Oh how I hate thee...
18
+ $: << File.dirname(__FILE__) + '/..'
19
+ require 'jira4r/jira_tool.rb'
20
+
21
+ #Due to refactoring, this class should no longer be used.
22
+ module Jira
23
+ class JiraTool
24
+ puts "Jira::JiraTool is deprecated; use Jira4R::JiraTool"
25
+
26
+ def initialize(version, base_url)
27
+ @proxy = ::Jira4R::JiraTool.new(version, base_url)
28
+ end
29
+
30
+ def method_missing(name, *args)
31
+ @proxy.send(name, *args)
32
+ end
33
+ end
34
+ end
@@ -0,0 +1,209 @@
1
+ require 'logger'
2
+
3
+ module Jira4R
4
+
5
+ class JiraTool
6
+ attr_accessor :enhanced
7
+
8
+ # Create a new JiraTool
9
+ #
10
+ # where:
11
+ # version ... the version of the SOAP API you wish to use - currently supported versions [ 2 ]
12
+ # base_url ... the base URL of the JIRA instance - eg. http://confluence.atlassian.com
13
+ def initialize(version, base_url)
14
+ @version = version
15
+ @base_url = base_url
16
+ @logger = Logger.new(STDERR)
17
+ @endpoint_url = "#{@base_url}/rpc/soap/jirasoapservice-v#{version}"
18
+ end
19
+
20
+ #Assign a new logger to the tool. By default a STDERR logger is used.
21
+ def logger=(logger)
22
+ @logger = logger
23
+ end
24
+
25
+ #Retrieve the driver, creating as required.
26
+ def driver()
27
+ if not @driver
28
+ @logger.info( "Connecting driver to #{@endpoint_url}" )
29
+
30
+ require "jira4r/v#{@version}/jiraService.rb"
31
+ require "jira4r/v#{@version}/JiraSoapServiceDriver.rb"
32
+ require "jira4r/v#{@version}/jiraServiceMappingRegistry.rb"
33
+
34
+ service_classname = "Jira4R::V#{@version}::JiraSoapService"
35
+ puts "Service: #{service_classname}"
36
+ service = eval(service_classname)
37
+ @driver = service.send(:new, @endpoint_url)
38
+ end
39
+ @driver
40
+ end
41
+
42
+ #Assign a wiredump file prefix to the driver.
43
+ def wiredump_file_base=(base)
44
+ driver().wiredump_file_base = base
45
+ end
46
+
47
+
48
+ #Login to the JIRA instance, storing the token for later calls.
49
+ #
50
+ #This is typically the first call that is made on the JiraTool.
51
+ def login(username, password)
52
+ @token = driver().login(username, password)
53
+ end
54
+
55
+ #Clients should avoid using the authentication token directly.
56
+ def token()
57
+ @token
58
+ end
59
+
60
+ #Call a method on the driver, adding in the authentication token previously determined using login()
61
+ def call_driver(method_name, *args)
62
+ @logger.debug("Finding method #{method_name}")
63
+ method = driver().method(method_name)
64
+
65
+ if args.length > 0
66
+ method.call(@token, *args)
67
+ else
68
+ method.call(@token)
69
+ end
70
+ end
71
+
72
+ #Retrieve a project without the associated PermissionScheme.
73
+ #This will be significantly faster for larger Jira installations.
74
+ #See: JRA-10660
75
+ def getProjectNoScheme(key)
76
+ puts "getProjectNoScheme is deprecated. Please call getProjectNoSchemes."
77
+ getProjectNoSchemes(key)
78
+ end
79
+
80
+ def getProjectNoSchemes(key)
81
+ self.getProjectsNoSchemes().find { |project| project.key == key }
82
+ end
83
+
84
+ def getProject(key)
85
+ #Jira > 3.10 has been patched to support this method directly as getProjectByKey
86
+ puts "Using deprecated JIRA4R API call getProject(key); replace with getProjectByKey(key)"
87
+ return getProjectByKey(key)
88
+ end
89
+
90
+ def getProjectByKey( projectKey )
91
+ begin
92
+ return call_driver( "getProjectByKey", projectKey )
93
+ rescue SOAP::FaultError => soap_error
94
+ #XXX surely there is a better way to detect this kind of condition in the JIRA server
95
+ if soap_error.faultcode.to_s == "soapenv:Server.userException" and soap_error.faultstring.to_s == "com.atlassian.jira.rpc.exception.RemoteException: Project: #{projectKey} does not exist"
96
+ return nil
97
+ else
98
+ raise soap_error
99
+ end
100
+ end
101
+ end
102
+
103
+ def getGroup( groupName )
104
+ begin
105
+ return call_driver( "getGroup", groupName )
106
+ rescue SOAP::FaultError => soap_error
107
+ #XXX surely there is a better way to detect this kind of condition in the JIRA server
108
+ if soap_error.faultcode.to_s == "soapenv:Server.userException" and soap_error.faultstring.to_s == "com.atlassian.jira.rpc.exception.RemoteValidationException: no group found for that groupName: #{groupName}"
109
+ return nil
110
+ else
111
+ raise soap_error
112
+ end
113
+ end
114
+ end
115
+
116
+ def getProjectRoleByName( projectRoleName )
117
+ getProjectRoles.each{ |projectRole|
118
+ return projectRole if projectRole.name == projectRoleName
119
+ }
120
+ end
121
+
122
+ def getPermissionScheme( permissionSchemeName )
123
+ self.getPermissionSchemes().each { |permission_scheme|
124
+ return permission_scheme if permission_scheme.name == permissionSchemeName
125
+ }
126
+ return nil
127
+ end
128
+
129
+ def getNotificationScheme( notificationSchemeName )
130
+ self.getNotificationSchemes().each { |notification_scheme|
131
+ return notification_scheme if notification_scheme.name == notificationSchemeName
132
+ }
133
+ return nil
134
+ end
135
+
136
+ def getPermission( permissionName )
137
+ if not @permissions
138
+ @permissions = self.getAllPermissions()
139
+ end
140
+
141
+ @permissions.each { |permission|
142
+ return permission if permission.name.downcase == permissionName.downcase
143
+ }
144
+
145
+ @logger.warn("No permission #{permissionName} found")
146
+ return nil
147
+ end
148
+
149
+ def findPermission(allowedPermissions, permissionName)
150
+ allowedPermissions.each { |allowedPermission|
151
+ #puts "Checking #{allowedPermission.name} against #{permissionName} "
152
+ return allowedPermission if allowedPermission.name == permissionName
153
+ }
154
+ return nil
155
+ end
156
+
157
+ def findEntityInPermissionMapping(permissionMapping, entityName)
158
+ permissionMapping.remoteEntities.each { |entity|
159
+ return entity if entity.name == entityName
160
+ }
161
+ return nil
162
+ end
163
+
164
+ #Removes entity
165
+ def setPermissions( permissionScheme, allowedPermissions, entity)
166
+ allowedPermissions = [ allowedPermissions ].flatten.compact
167
+ #Remove permissions that are no longer allowed
168
+ permissionScheme.permissionMappings.each { |mapping|
169
+ next unless findEntityInPermissionMapping(mapping, entity.name)
170
+
171
+ allowedPermission = findPermission(allowedPermissions, mapping.permission.name)
172
+ if allowedPermission
173
+ puts "Already has #{allowedPermission.name} in #{permissionScheme.name} for #{entity.name}"
174
+ allowedPermissions.delete(allowedPermission)
175
+ next
176
+ end
177
+
178
+ puts "Deleting #{mapping.permission.name} from #{permissionScheme.name} for #{entity.name}"
179
+ deletePermissionFrom( permissionScheme, mapping.permission, entity)
180
+ }
181
+
182
+ puts allowedPermissions.inspect
183
+ allowedPermissions.each { |allowedPermission|
184
+ puts "Granting #{allowedPermission.name} to #{permissionScheme.name} for #{entity.name}"
185
+ addPermissionTo(permissionScheme, allowedPermission, entity)
186
+ }
187
+ end
188
+
189
+ private
190
+ def fix_args(args)
191
+ args.collect { |arg|
192
+ if arg == nil
193
+ SOAP::SOAPNil.new
194
+ else
195
+ arg
196
+ end
197
+ }
198
+ end
199
+
200
+ def method_missing(method_name, *args)
201
+ args = fix_args(args)
202
+ call_driver(method_name, *args)
203
+ end
204
+
205
+
206
+
207
+ end
208
+
209
+ end
@@ -0,0 +1,982 @@
1
+ # encoding: ASCII-8BIT
2
+ require 'jiraService.rb'
3
+ require 'jiraServiceMappingRegistry.rb'
4
+ require 'soap/rpc/driver'
5
+
6
+ module Jira4R::V2
7
+
8
+ class JiraSoapService < ::SOAP::RPC::Driver
9
+ DefaultEndpointUrl = "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2"
10
+ NsSoapRpcJiraAtlassianCom = "http://soap.rpc.jira.atlassian.com"
11
+
12
+ Methods = [
13
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getComment"),
14
+ "",
15
+ "getComment",
16
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
17
+ [:in, "in1", ["::SOAP::SOAPLong"]],
18
+ [:retval, "getCommentReturn", ["Jira4R::V2::RemoteComment", "http://beans.soap.rpc.jira.atlassian.com", "RemoteComment"]] ],
19
+ { :request_style => :rpc, :request_use => :encoded,
20
+ :response_style => :rpc, :response_use => :encoded,
21
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
22
+ ],
23
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "createGroup"),
24
+ "",
25
+ "createGroup",
26
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
27
+ [:in, "in1", ["::SOAP::SOAPString"]],
28
+ [:in, "in2", ["Jira4R::V2::RemoteUser", "http://beans.soap.rpc.jira.atlassian.com", "RemoteUser"]],
29
+ [:retval, "createGroupReturn", ["Jira4R::V2::RemoteGroup", "http://beans.soap.rpc.jira.atlassian.com", "RemoteGroup"]] ],
30
+ { :request_style => :rpc, :request_use => :encoded,
31
+ :response_style => :rpc, :response_use => :encoded,
32
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
33
+ ],
34
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getUser"),
35
+ "",
36
+ "getUser",
37
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
38
+ [:in, "in1", ["::SOAP::SOAPString"]],
39
+ [:retval, "getUserReturn", ["Jira4R::V2::RemoteUser", "http://beans.soap.rpc.jira.atlassian.com", "RemoteUser"]] ],
40
+ { :request_style => :rpc, :request_use => :encoded,
41
+ :response_style => :rpc, :response_use => :encoded,
42
+ :faults => {"Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
43
+ ],
44
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getGroup"),
45
+ "",
46
+ "getGroup",
47
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
48
+ [:in, "in1", ["::SOAP::SOAPString"]],
49
+ [:retval, "getGroupReturn", ["Jira4R::V2::RemoteGroup", "http://beans.soap.rpc.jira.atlassian.com", "RemoteGroup"]] ],
50
+ { :request_style => :rpc, :request_use => :encoded,
51
+ :response_style => :rpc, :response_use => :encoded,
52
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
53
+ ],
54
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "login"),
55
+ "",
56
+ "login",
57
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
58
+ [:in, "in1", ["::SOAP::SOAPString"]],
59
+ [:retval, "loginReturn", ["::SOAP::SOAPString"]] ],
60
+ { :request_style => :rpc, :request_use => :encoded,
61
+ :response_style => :rpc, :response_use => :encoded,
62
+ :faults => {"Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
63
+ ],
64
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getServerInfo"),
65
+ "",
66
+ "getServerInfo",
67
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
68
+ [:retval, "getServerInfoReturn", ["Jira4R::V2::RemoteServerInfo", "http://beans.soap.rpc.jira.atlassian.com", "RemoteServerInfo"]] ],
69
+ { :request_style => :rpc, :request_use => :encoded,
70
+ :response_style => :rpc, :response_use => :encoded,
71
+ :faults => {} }
72
+ ],
73
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "logout"),
74
+ "",
75
+ "logout",
76
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
77
+ [:retval, "logoutReturn", ["::SOAP::SOAPBoolean"]] ],
78
+ { :request_style => :rpc, :request_use => :encoded,
79
+ :response_style => :rpc, :response_use => :encoded,
80
+ :faults => {} }
81
+ ],
82
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getIssue"),
83
+ "",
84
+ "getIssue",
85
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
86
+ [:in, "in1", ["::SOAP::SOAPString"]],
87
+ [:retval, "getIssueReturn", ["Jira4R::V2::RemoteIssue", "http://beans.soap.rpc.jira.atlassian.com", "RemoteIssue"]] ],
88
+ { :request_style => :rpc, :request_use => :encoded,
89
+ :response_style => :rpc, :response_use => :encoded,
90
+ :faults => {"Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
91
+ ],
92
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getComponents"),
93
+ "",
94
+ "getComponents",
95
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
96
+ [:in, "in1", ["::SOAP::SOAPString"]],
97
+ [:retval, "getComponentsReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteComponent", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteComponent"]] ],
98
+ { :request_style => :rpc, :request_use => :encoded,
99
+ :response_style => :rpc, :response_use => :encoded,
100
+ :faults => {"Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
101
+ ],
102
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "createUser"),
103
+ "",
104
+ "createUser",
105
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
106
+ [:in, "in1", ["::SOAP::SOAPString"]],
107
+ [:in, "in2", ["::SOAP::SOAPString"]],
108
+ [:in, "in3", ["::SOAP::SOAPString"]],
109
+ [:in, "in4", ["::SOAP::SOAPString"]],
110
+ [:retval, "createUserReturn", ["Jira4R::V2::RemoteUser", "http://beans.soap.rpc.jira.atlassian.com", "RemoteUser"]] ],
111
+ { :request_style => :rpc, :request_use => :encoded,
112
+ :response_style => :rpc, :response_use => :encoded,
113
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
114
+ ],
115
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "createIssue"),
116
+ "",
117
+ "createIssue",
118
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
119
+ [:in, "in1", ["Jira4R::V2::RemoteIssue", "http://beans.soap.rpc.jira.atlassian.com", "RemoteIssue"]],
120
+ [:retval, "createIssueReturn", ["Jira4R::V2::RemoteIssue", "http://beans.soap.rpc.jira.atlassian.com", "RemoteIssue"]] ],
121
+ { :request_style => :rpc, :request_use => :encoded,
122
+ :response_style => :rpc, :response_use => :encoded,
123
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
124
+ ],
125
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getAvailableActions"),
126
+ "",
127
+ "getAvailableActions",
128
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
129
+ [:in, "in1", ["::SOAP::SOAPString"]],
130
+ [:retval, "getAvailableActionsReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteNamedObject", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteNamedObject"]] ],
131
+ { :request_style => :rpc, :request_use => :encoded,
132
+ :response_style => :rpc, :response_use => :encoded,
133
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
134
+ ],
135
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getProjects"),
136
+ "",
137
+ "getProjects",
138
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
139
+ [:retval, "getProjectsReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteProject", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteProject"]] ],
140
+ { :request_style => :rpc, :request_use => :encoded,
141
+ :response_style => :rpc, :response_use => :encoded,
142
+ :faults => {"Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
143
+ ],
144
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "updateIssue"),
145
+ "",
146
+ "updateIssue",
147
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
148
+ [:in, "in1", ["::SOAP::SOAPString"]],
149
+ [:in, "in2", ["Jira4R::V2::ArrayOf_tns1_RemoteFieldValue", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteFieldValue"]],
150
+ [:retval, "updateIssueReturn", ["Jira4R::V2::RemoteIssue", "http://beans.soap.rpc.jira.atlassian.com", "RemoteIssue"]] ],
151
+ { :request_style => :rpc, :request_use => :encoded,
152
+ :response_style => :rpc, :response_use => :encoded,
153
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
154
+ ],
155
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getConfiguration"),
156
+ "",
157
+ "getConfiguration",
158
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
159
+ [:retval, "getConfigurationReturn", ["Jira4R::V2::RemoteConfiguration", "http://beans.soap.rpc.jira.atlassian.com", "RemoteConfiguration"]] ],
160
+ { :request_style => :rpc, :request_use => :encoded,
161
+ :response_style => :rpc, :response_use => :encoded,
162
+ :faults => {"Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
163
+ ],
164
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "updateProject"),
165
+ "",
166
+ "updateProject",
167
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
168
+ [:in, "in1", ["Jira4R::V2::RemoteProject", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProject"]],
169
+ [:retval, "updateProjectReturn", ["Jira4R::V2::RemoteProject", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProject"]] ],
170
+ { :request_style => :rpc, :request_use => :encoded,
171
+ :response_style => :rpc, :response_use => :encoded,
172
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
173
+ ],
174
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getProjectByKey"),
175
+ "",
176
+ "getProjectByKey",
177
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
178
+ [:in, "in1", ["::SOAP::SOAPString"]],
179
+ [:retval, "getProjectByKeyReturn", ["Jira4R::V2::RemoteProject", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProject"]] ],
180
+ { :request_style => :rpc, :request_use => :encoded,
181
+ :response_style => :rpc, :response_use => :encoded,
182
+ :faults => {"Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
183
+ ],
184
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getPriorities"),
185
+ "",
186
+ "getPriorities",
187
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
188
+ [:retval, "getPrioritiesReturn", ["Jira4R::V2::ArrayOf_tns1_RemotePriority", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemotePriority"]] ],
189
+ { :request_style => :rpc, :request_use => :encoded,
190
+ :response_style => :rpc, :response_use => :encoded,
191
+ :faults => {"Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
192
+ ],
193
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getResolutions"),
194
+ "",
195
+ "getResolutions",
196
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
197
+ [:retval, "getResolutionsReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteResolution", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteResolution"]] ],
198
+ { :request_style => :rpc, :request_use => :encoded,
199
+ :response_style => :rpc, :response_use => :encoded,
200
+ :faults => {"Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
201
+ ],
202
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getIssueTypes"),
203
+ "",
204
+ "getIssueTypes",
205
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
206
+ [:retval, "getIssueTypesReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteIssueType", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteIssueType"]] ],
207
+ { :request_style => :rpc, :request_use => :encoded,
208
+ :response_style => :rpc, :response_use => :encoded,
209
+ :faults => {"Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
210
+ ],
211
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getStatuses"),
212
+ "",
213
+ "getStatuses",
214
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
215
+ [:retval, "getStatusesReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteStatus", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteStatus"]] ],
216
+ { :request_style => :rpc, :request_use => :encoded,
217
+ :response_style => :rpc, :response_use => :encoded,
218
+ :faults => {"Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
219
+ ],
220
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getSubTaskIssueTypes"),
221
+ "",
222
+ "getSubTaskIssueTypes",
223
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
224
+ [:retval, "getSubTaskIssueTypesReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteIssueType", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteIssueType"]] ],
225
+ { :request_style => :rpc, :request_use => :encoded,
226
+ :response_style => :rpc, :response_use => :encoded,
227
+ :faults => {"Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
228
+ ],
229
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getProjectRoles"),
230
+ "",
231
+ "getProjectRoles",
232
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
233
+ [:retval, "getProjectRolesReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteProjectRole", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteProjectRole"]] ],
234
+ { :request_style => :rpc, :request_use => :encoded,
235
+ :response_style => :rpc, :response_use => :encoded,
236
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
237
+ ],
238
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getProjectRole"),
239
+ "",
240
+ "getProjectRole",
241
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
242
+ [:in, "in1", ["::SOAP::SOAPLong"]],
243
+ [:retval, "getProjectRoleReturn", ["Jira4R::V2::RemoteProjectRole", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRole"]] ],
244
+ { :request_style => :rpc, :request_use => :encoded,
245
+ :response_style => :rpc, :response_use => :encoded,
246
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
247
+ ],
248
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getProjectRoleActors"),
249
+ "",
250
+ "getProjectRoleActors",
251
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
252
+ [:in, "in1", ["Jira4R::V2::RemoteProjectRole", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRole"]],
253
+ [:in, "in2", ["Jira4R::V2::RemoteProject", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProject"]],
254
+ [:retval, "getProjectRoleActorsReturn", ["Jira4R::V2::RemoteProjectRoleActors", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRoleActors"]] ],
255
+ { :request_style => :rpc, :request_use => :encoded,
256
+ :response_style => :rpc, :response_use => :encoded,
257
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
258
+ ],
259
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getDefaultRoleActors"),
260
+ "",
261
+ "getDefaultRoleActors",
262
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
263
+ [:in, "in1", ["Jira4R::V2::RemoteProjectRole", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRole"]],
264
+ [:retval, "getDefaultRoleActorsReturn", ["Jira4R::V2::RemoteRoleActors", "http://beans.soap.rpc.jira.atlassian.com", "RemoteRoleActors"]] ],
265
+ { :request_style => :rpc, :request_use => :encoded,
266
+ :response_style => :rpc, :response_use => :encoded,
267
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
268
+ ],
269
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "removeAllRoleActorsByNameAndType"),
270
+ "",
271
+ "removeAllRoleActorsByNameAndType",
272
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
273
+ [:in, "in1", ["::SOAP::SOAPString"]],
274
+ [:in, "in2", ["::SOAP::SOAPString"]] ],
275
+ { :request_style => :rpc, :request_use => :encoded,
276
+ :response_style => :rpc, :response_use => :encoded,
277
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
278
+ ],
279
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "removeAllRoleActorsByProject"),
280
+ "",
281
+ "removeAllRoleActorsByProject",
282
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
283
+ [:in, "in1", ["Jira4R::V2::RemoteProject", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProject"]] ],
284
+ { :request_style => :rpc, :request_use => :encoded,
285
+ :response_style => :rpc, :response_use => :encoded,
286
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
287
+ ],
288
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "deleteProjectRole"),
289
+ "",
290
+ "deleteProjectRole",
291
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
292
+ [:in, "in1", ["Jira4R::V2::RemoteProjectRole", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRole"]],
293
+ [:in, "in2", ["::SOAP::SOAPBoolean"]] ],
294
+ { :request_style => :rpc, :request_use => :encoded,
295
+ :response_style => :rpc, :response_use => :encoded,
296
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
297
+ ],
298
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "updateProjectRole"),
299
+ "",
300
+ "updateProjectRole",
301
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
302
+ [:in, "in1", ["Jira4R::V2::RemoteProjectRole", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRole"]] ],
303
+ { :request_style => :rpc, :request_use => :encoded,
304
+ :response_style => :rpc, :response_use => :encoded,
305
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
306
+ ],
307
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "createProjectRole"),
308
+ "",
309
+ "createProjectRole",
310
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
311
+ [:in, "in1", ["Jira4R::V2::RemoteProjectRole", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRole"]],
312
+ [:retval, "createProjectRoleReturn", ["Jira4R::V2::RemoteProjectRole", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRole"]] ],
313
+ { :request_style => :rpc, :request_use => :encoded,
314
+ :response_style => :rpc, :response_use => :encoded,
315
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
316
+ ],
317
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "isProjectRoleNameUnique"),
318
+ "",
319
+ "isProjectRoleNameUnique",
320
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
321
+ [:in, "in1", ["::SOAP::SOAPString"]],
322
+ [:retval, "isProjectRoleNameUniqueReturn", ["::SOAP::SOAPBoolean"]] ],
323
+ { :request_style => :rpc, :request_use => :encoded,
324
+ :response_style => :rpc, :response_use => :encoded,
325
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
326
+ ],
327
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "addActorsToProjectRole"),
328
+ "",
329
+ "addActorsToProjectRole",
330
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
331
+ [:in, "in1", ["Jira4R::V2::ArrayOf_xsd_string", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_xsd_string"]],
332
+ [:in, "in2", ["Jira4R::V2::RemoteProjectRole", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRole"]],
333
+ [:in, "in3", ["Jira4R::V2::RemoteProject", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProject"]],
334
+ [:in, "in4", ["::SOAP::SOAPString"]] ],
335
+ { :request_style => :rpc, :request_use => :encoded,
336
+ :response_style => :rpc, :response_use => :encoded,
337
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
338
+ ],
339
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "removeActorsFromProjectRole"),
340
+ "",
341
+ "removeActorsFromProjectRole",
342
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
343
+ [:in, "in1", ["Jira4R::V2::ArrayOf_xsd_string", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_xsd_string"]],
344
+ [:in, "in2", ["Jira4R::V2::RemoteProjectRole", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRole"]],
345
+ [:in, "in3", ["Jira4R::V2::RemoteProject", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProject"]],
346
+ [:in, "in4", ["::SOAP::SOAPString"]] ],
347
+ { :request_style => :rpc, :request_use => :encoded,
348
+ :response_style => :rpc, :response_use => :encoded,
349
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
350
+ ],
351
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "addDefaultActorsToProjectRole"),
352
+ "",
353
+ "addDefaultActorsToProjectRole",
354
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
355
+ [:in, "in1", ["Jira4R::V2::ArrayOf_xsd_string", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_xsd_string"]],
356
+ [:in, "in2", ["Jira4R::V2::RemoteProjectRole", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRole"]],
357
+ [:in, "in3", ["::SOAP::SOAPString"]] ],
358
+ { :request_style => :rpc, :request_use => :encoded,
359
+ :response_style => :rpc, :response_use => :encoded,
360
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
361
+ ],
362
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "removeDefaultActorsFromProjectRole"),
363
+ "",
364
+ "removeDefaultActorsFromProjectRole",
365
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
366
+ [:in, "in1", ["Jira4R::V2::ArrayOf_xsd_string", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_xsd_string"]],
367
+ [:in, "in2", ["Jira4R::V2::RemoteProjectRole", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRole"]],
368
+ [:in, "in3", ["::SOAP::SOAPString"]] ],
369
+ { :request_style => :rpc, :request_use => :encoded,
370
+ :response_style => :rpc, :response_use => :encoded,
371
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
372
+ ],
373
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getAssociatedNotificationSchemes"),
374
+ "",
375
+ "getAssociatedNotificationSchemes",
376
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
377
+ [:in, "in1", ["Jira4R::V2::RemoteProjectRole", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRole"]],
378
+ [:retval, "getAssociatedNotificationSchemesReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteScheme", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteScheme"]] ],
379
+ { :request_style => :rpc, :request_use => :encoded,
380
+ :response_style => :rpc, :response_use => :encoded,
381
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
382
+ ],
383
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getAssociatedPermissionSchemes"),
384
+ "",
385
+ "getAssociatedPermissionSchemes",
386
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
387
+ [:in, "in1", ["Jira4R::V2::RemoteProjectRole", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProjectRole"]],
388
+ [:retval, "getAssociatedPermissionSchemesReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteScheme", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteScheme"]] ],
389
+ { :request_style => :rpc, :request_use => :encoded,
390
+ :response_style => :rpc, :response_use => :encoded,
391
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
392
+ ],
393
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getCustomFields"),
394
+ "",
395
+ "getCustomFields",
396
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
397
+ [:retval, "getCustomFieldsReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteField", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteField"]] ],
398
+ { :request_style => :rpc, :request_use => :encoded,
399
+ :response_style => :rpc, :response_use => :encoded,
400
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
401
+ ],
402
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getSavedFilters"),
403
+ "",
404
+ "getSavedFilters",
405
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
406
+ [:retval, "getSavedFiltersReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteFilter", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteFilter"]] ],
407
+ { :request_style => :rpc, :request_use => :encoded,
408
+ :response_style => :rpc, :response_use => :encoded,
409
+ :faults => {"Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
410
+ ],
411
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getComments"),
412
+ "",
413
+ "getComments",
414
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
415
+ [:in, "in1", ["::SOAP::SOAPString"]],
416
+ [:retval, "getCommentsReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteComment", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteComment"]] ],
417
+ { :request_style => :rpc, :request_use => :encoded,
418
+ :response_style => :rpc, :response_use => :encoded,
419
+ :faults => {"Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
420
+ ],
421
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "archiveVersion"),
422
+ "",
423
+ "archiveVersion",
424
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
425
+ [:in, "in1", ["::SOAP::SOAPString"]],
426
+ [:in, "in2", ["::SOAP::SOAPString"]],
427
+ [:in, "in3", ["::SOAP::SOAPBoolean"]] ],
428
+ { :request_style => :rpc, :request_use => :encoded,
429
+ :response_style => :rpc, :response_use => :encoded,
430
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
431
+ ],
432
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getVersions"),
433
+ "",
434
+ "getVersions",
435
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
436
+ [:in, "in1", ["::SOAP::SOAPString"]],
437
+ [:retval, "getVersionsReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteVersion", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteVersion"]] ],
438
+ { :request_style => :rpc, :request_use => :encoded,
439
+ :response_style => :rpc, :response_use => :encoded,
440
+ :faults => {"Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
441
+ ],
442
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "createProject"),
443
+ "",
444
+ "createProject",
445
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
446
+ [:in, "in1", ["::SOAP::SOAPString"]],
447
+ [:in, "in2", ["::SOAP::SOAPString"]],
448
+ [:in, "in3", ["::SOAP::SOAPString"]],
449
+ [:in, "in4", ["::SOAP::SOAPString"]],
450
+ [:in, "in5", ["::SOAP::SOAPString"]],
451
+ [:in, "in6", ["Jira4R::V2::RemotePermissionScheme", "http://beans.soap.rpc.jira.atlassian.com", "RemotePermissionScheme"]],
452
+ [:in, "in7", ["Jira4R::V2::RemoteScheme", "http://beans.soap.rpc.jira.atlassian.com", "RemoteScheme"]],
453
+ [:in, "in8", ["Jira4R::V2::RemoteScheme", "http://beans.soap.rpc.jira.atlassian.com", "RemoteScheme"]],
454
+ [:retval, "createProjectReturn", ["Jira4R::V2::RemoteProject", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProject"]] ],
455
+ { :request_style => :rpc, :request_use => :encoded,
456
+ :response_style => :rpc, :response_use => :encoded,
457
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
458
+ ],
459
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "addComment"),
460
+ "",
461
+ "addComment",
462
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
463
+ [:in, "in1", ["::SOAP::SOAPString"]],
464
+ [:in, "in2", ["Jira4R::V2::RemoteComment", "http://beans.soap.rpc.jira.atlassian.com", "RemoteComment"]] ],
465
+ { :request_style => :rpc, :request_use => :encoded,
466
+ :response_style => :rpc, :response_use => :encoded,
467
+ :faults => {"Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
468
+ ],
469
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getFieldsForEdit"),
470
+ "",
471
+ "getFieldsForEdit",
472
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
473
+ [:in, "in1", ["::SOAP::SOAPString"]],
474
+ [:retval, "getFieldsForEditReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteField", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteField"]] ],
475
+ { :request_style => :rpc, :request_use => :encoded,
476
+ :response_style => :rpc, :response_use => :encoded,
477
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
478
+ ],
479
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getIssueTypesForProject"),
480
+ "",
481
+ "getIssueTypesForProject",
482
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
483
+ [:in, "in1", ["::SOAP::SOAPString"]],
484
+ [:retval, "getIssueTypesForProjectReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteIssueType", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteIssueType"]] ],
485
+ { :request_style => :rpc, :request_use => :encoded,
486
+ :response_style => :rpc, :response_use => :encoded,
487
+ :faults => {"Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
488
+ ],
489
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getSubTaskIssueTypesForProject"),
490
+ "",
491
+ "getSubTaskIssueTypesForProject",
492
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
493
+ [:in, "in1", ["::SOAP::SOAPString"]],
494
+ [:retval, "getSubTaskIssueTypesForProjectReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteIssueType", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteIssueType"]] ],
495
+ { :request_style => :rpc, :request_use => :encoded,
496
+ :response_style => :rpc, :response_use => :encoded,
497
+ :faults => {"Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
498
+ ],
499
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "addUserToGroup"),
500
+ "",
501
+ "addUserToGroup",
502
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
503
+ [:in, "in1", ["Jira4R::V2::RemoteGroup", "http://beans.soap.rpc.jira.atlassian.com", "RemoteGroup"]],
504
+ [:in, "in2", ["Jira4R::V2::RemoteUser", "http://beans.soap.rpc.jira.atlassian.com", "RemoteUser"]] ],
505
+ { :request_style => :rpc, :request_use => :encoded,
506
+ :response_style => :rpc, :response_use => :encoded,
507
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
508
+ ],
509
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "removeUserFromGroup"),
510
+ "",
511
+ "removeUserFromGroup",
512
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
513
+ [:in, "in1", ["Jira4R::V2::RemoteGroup", "http://beans.soap.rpc.jira.atlassian.com", "RemoteGroup"]],
514
+ [:in, "in2", ["Jira4R::V2::RemoteUser", "http://beans.soap.rpc.jira.atlassian.com", "RemoteUser"]] ],
515
+ { :request_style => :rpc, :request_use => :encoded,
516
+ :response_style => :rpc, :response_use => :encoded,
517
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
518
+ ],
519
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getProjectById"),
520
+ "",
521
+ "getProjectById",
522
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
523
+ [:in, "in1", ["::SOAP::SOAPLong"]],
524
+ [:retval, "getProjectByIdReturn", ["Jira4R::V2::RemoteProject", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProject"]] ],
525
+ { :request_style => :rpc, :request_use => :encoded,
526
+ :response_style => :rpc, :response_use => :encoded,
527
+ :faults => {"Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
528
+ ],
529
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "deleteProject"),
530
+ "",
531
+ "deleteProject",
532
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
533
+ [:in, "in1", ["::SOAP::SOAPString"]] ],
534
+ { :request_style => :rpc, :request_use => :encoded,
535
+ :response_style => :rpc, :response_use => :encoded,
536
+ :faults => {"Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
537
+ ],
538
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "releaseVersion"),
539
+ "",
540
+ "releaseVersion",
541
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
542
+ [:in, "in1", ["::SOAP::SOAPString"]],
543
+ [:in, "in2", ["Jira4R::V2::RemoteVersion", "http://beans.soap.rpc.jira.atlassian.com", "RemoteVersion"]] ],
544
+ { :request_style => :rpc, :request_use => :encoded,
545
+ :response_style => :rpc, :response_use => :encoded,
546
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
547
+ ],
548
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "deleteIssue"),
549
+ "",
550
+ "deleteIssue",
551
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
552
+ [:in, "in1", ["::SOAP::SOAPString"]] ],
553
+ { :request_style => :rpc, :request_use => :encoded,
554
+ :response_style => :rpc, :response_use => :encoded,
555
+ :faults => {"Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
556
+ ],
557
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "addAttachmentsToIssue"),
558
+ "",
559
+ "addAttachmentsToIssue",
560
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
561
+ [:in, "in1", ["::SOAP::SOAPString"]],
562
+ [:in, "in2", ["Jira4R::V2::ArrayOf_xsd_string", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_xsd_string"]],
563
+ [:in, "in3", ["Jira4R::V2::ArrayOf_xsd_base64Binary", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_xsd_base64Binary"]],
564
+ [:retval, "addAttachmentsToIssueReturn", ["::SOAP::SOAPBoolean"]] ],
565
+ { :request_style => :rpc, :request_use => :encoded,
566
+ :response_style => :rpc, :response_use => :encoded,
567
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
568
+ ],
569
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getAttachmentsFromIssue"),
570
+ "",
571
+ "getAttachmentsFromIssue",
572
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
573
+ [:in, "in1", ["::SOAP::SOAPString"]],
574
+ [:retval, "getAttachmentsFromIssueReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteAttachment", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteAttachment"]] ],
575
+ { :request_style => :rpc, :request_use => :encoded,
576
+ :response_style => :rpc, :response_use => :encoded,
577
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
578
+ ],
579
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "hasPermissionToEditComment"),
580
+ "",
581
+ "hasPermissionToEditComment",
582
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
583
+ [:in, "in1", ["Jira4R::V2::RemoteComment", "http://beans.soap.rpc.jira.atlassian.com", "RemoteComment"]],
584
+ [:retval, "hasPermissionToEditCommentReturn", ["::SOAP::SOAPBoolean"]] ],
585
+ { :request_style => :rpc, :request_use => :encoded,
586
+ :response_style => :rpc, :response_use => :encoded,
587
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
588
+ ],
589
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "editComment"),
590
+ "",
591
+ "editComment",
592
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
593
+ [:in, "in1", ["Jira4R::V2::RemoteComment", "http://beans.soap.rpc.jira.atlassian.com", "RemoteComment"]],
594
+ [:retval, "editCommentReturn", ["Jira4R::V2::RemoteComment", "http://beans.soap.rpc.jira.atlassian.com", "RemoteComment"]] ],
595
+ { :request_style => :rpc, :request_use => :encoded,
596
+ :response_style => :rpc, :response_use => :encoded,
597
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
598
+ ],
599
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getFieldsForAction"),
600
+ "",
601
+ "getFieldsForAction",
602
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
603
+ [:in, "in1", ["::SOAP::SOAPString"]],
604
+ [:in, "in2", ["::SOAP::SOAPString"]],
605
+ [:retval, "getFieldsForActionReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteField", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteField"]] ],
606
+ { :request_style => :rpc, :request_use => :encoded,
607
+ :response_style => :rpc, :response_use => :encoded,
608
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
609
+ ],
610
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "progressWorkflowAction"),
611
+ "",
612
+ "progressWorkflowAction",
613
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
614
+ [:in, "in1", ["::SOAP::SOAPString"]],
615
+ [:in, "in2", ["::SOAP::SOAPString"]],
616
+ [:in, "in3", ["Jira4R::V2::ArrayOf_tns1_RemoteFieldValue", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteFieldValue"]],
617
+ [:retval, "progressWorkflowActionReturn", ["Jira4R::V2::RemoteIssue", "http://beans.soap.rpc.jira.atlassian.com", "RemoteIssue"]] ],
618
+ { :request_style => :rpc, :request_use => :encoded,
619
+ :response_style => :rpc, :response_use => :encoded,
620
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
621
+ ],
622
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getIssueById"),
623
+ "",
624
+ "getIssueById",
625
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
626
+ [:in, "in1", ["::SOAP::SOAPString"]],
627
+ [:retval, "getIssueByIdReturn", ["Jira4R::V2::RemoteIssue", "http://beans.soap.rpc.jira.atlassian.com", "RemoteIssue"]] ],
628
+ { :request_style => :rpc, :request_use => :encoded,
629
+ :response_style => :rpc, :response_use => :encoded,
630
+ :faults => {"Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
631
+ ],
632
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "addWorklogWithNewRemainingEstimate"),
633
+ "",
634
+ "addWorklogWithNewRemainingEstimate",
635
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
636
+ [:in, "in1", ["::SOAP::SOAPString"]],
637
+ [:in, "in2", ["Jira4R::V2::RemoteWorklog", "http://beans.soap.rpc.jira.atlassian.com", "RemoteWorklog"]],
638
+ [:in, "in3", ["::SOAP::SOAPString"]],
639
+ [:retval, "addWorklogWithNewRemainingEstimateReturn", ["Jira4R::V2::RemoteWorklog", "http://beans.soap.rpc.jira.atlassian.com", "RemoteWorklog"]] ],
640
+ { :request_style => :rpc, :request_use => :encoded,
641
+ :response_style => :rpc, :response_use => :encoded,
642
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
643
+ ],
644
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "addWorklogAndAutoAdjustRemainingEstimate"),
645
+ "",
646
+ "addWorklogAndAutoAdjustRemainingEstimate",
647
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
648
+ [:in, "in1", ["::SOAP::SOAPString"]],
649
+ [:in, "in2", ["Jira4R::V2::RemoteWorklog", "http://beans.soap.rpc.jira.atlassian.com", "RemoteWorklog"]],
650
+ [:retval, "addWorklogAndAutoAdjustRemainingEstimateReturn", ["Jira4R::V2::RemoteWorklog", "http://beans.soap.rpc.jira.atlassian.com", "RemoteWorklog"]] ],
651
+ { :request_style => :rpc, :request_use => :encoded,
652
+ :response_style => :rpc, :response_use => :encoded,
653
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
654
+ ],
655
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "addWorklogAndRetainRemainingEstimate"),
656
+ "",
657
+ "addWorklogAndRetainRemainingEstimate",
658
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
659
+ [:in, "in1", ["::SOAP::SOAPString"]],
660
+ [:in, "in2", ["Jira4R::V2::RemoteWorklog", "http://beans.soap.rpc.jira.atlassian.com", "RemoteWorklog"]],
661
+ [:retval, "addWorklogAndRetainRemainingEstimateReturn", ["Jira4R::V2::RemoteWorklog", "http://beans.soap.rpc.jira.atlassian.com", "RemoteWorklog"]] ],
662
+ { :request_style => :rpc, :request_use => :encoded,
663
+ :response_style => :rpc, :response_use => :encoded,
664
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
665
+ ],
666
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "deleteWorklogWithNewRemainingEstimate"),
667
+ "",
668
+ "deleteWorklogWithNewRemainingEstimate",
669
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
670
+ [:in, "in1", ["::SOAP::SOAPString"]],
671
+ [:in, "in2", ["::SOAP::SOAPString"]] ],
672
+ { :request_style => :rpc, :request_use => :encoded,
673
+ :response_style => :rpc, :response_use => :encoded,
674
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
675
+ ],
676
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "deleteWorklogAndAutoAdjustRemainingEstimate"),
677
+ "",
678
+ "deleteWorklogAndAutoAdjustRemainingEstimate",
679
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
680
+ [:in, "in1", ["::SOAP::SOAPString"]] ],
681
+ { :request_style => :rpc, :request_use => :encoded,
682
+ :response_style => :rpc, :response_use => :encoded,
683
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
684
+ ],
685
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "deleteWorklogAndRetainRemainingEstimate"),
686
+ "",
687
+ "deleteWorklogAndRetainRemainingEstimate",
688
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
689
+ [:in, "in1", ["::SOAP::SOAPString"]] ],
690
+ { :request_style => :rpc, :request_use => :encoded,
691
+ :response_style => :rpc, :response_use => :encoded,
692
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
693
+ ],
694
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "updateWorklogWithNewRemainingEstimate"),
695
+ "",
696
+ "updateWorklogWithNewRemainingEstimate",
697
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
698
+ [:in, "in1", ["Jira4R::V2::RemoteWorklog", "http://beans.soap.rpc.jira.atlassian.com", "RemoteWorklog"]],
699
+ [:in, "in2", ["::SOAP::SOAPString"]] ],
700
+ { :request_style => :rpc, :request_use => :encoded,
701
+ :response_style => :rpc, :response_use => :encoded,
702
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
703
+ ],
704
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "updateWorklogAndAutoAdjustRemainingEstimate"),
705
+ "",
706
+ "updateWorklogAndAutoAdjustRemainingEstimate",
707
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
708
+ [:in, "in1", ["Jira4R::V2::RemoteWorklog", "http://beans.soap.rpc.jira.atlassian.com", "RemoteWorklog"]] ],
709
+ { :request_style => :rpc, :request_use => :encoded,
710
+ :response_style => :rpc, :response_use => :encoded,
711
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
712
+ ],
713
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "updateWorklogAndRetainRemainingEstimate"),
714
+ "",
715
+ "updateWorklogAndRetainRemainingEstimate",
716
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
717
+ [:in, "in1", ["Jira4R::V2::RemoteWorklog", "http://beans.soap.rpc.jira.atlassian.com", "RemoteWorklog"]] ],
718
+ { :request_style => :rpc, :request_use => :encoded,
719
+ :response_style => :rpc, :response_use => :encoded,
720
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
721
+ ],
722
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getWorklogs"),
723
+ "",
724
+ "getWorklogs",
725
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
726
+ [:in, "in1", ["::SOAP::SOAPString"]],
727
+ [:retval, "getWorklogsReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteWorklog", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteWorklog"]] ],
728
+ { :request_style => :rpc, :request_use => :encoded,
729
+ :response_style => :rpc, :response_use => :encoded,
730
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
731
+ ],
732
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "hasPermissionToCreateWorklog"),
733
+ "",
734
+ "hasPermissionToCreateWorklog",
735
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
736
+ [:in, "in1", ["::SOAP::SOAPString"]],
737
+ [:retval, "hasPermissionToCreateWorklogReturn", ["::SOAP::SOAPBoolean"]] ],
738
+ { :request_style => :rpc, :request_use => :encoded,
739
+ :response_style => :rpc, :response_use => :encoded,
740
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
741
+ ],
742
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "hasPermissionToDeleteWorklog"),
743
+ "",
744
+ "hasPermissionToDeleteWorklog",
745
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
746
+ [:in, "in1", ["::SOAP::SOAPString"]],
747
+ [:retval, "hasPermissionToDeleteWorklogReturn", ["::SOAP::SOAPBoolean"]] ],
748
+ { :request_style => :rpc, :request_use => :encoded,
749
+ :response_style => :rpc, :response_use => :encoded,
750
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
751
+ ],
752
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "hasPermissionToUpdateWorklog"),
753
+ "",
754
+ "hasPermissionToUpdateWorklog",
755
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
756
+ [:in, "in1", ["::SOAP::SOAPString"]],
757
+ [:retval, "hasPermissionToUpdateWorklogReturn", ["::SOAP::SOAPBoolean"]] ],
758
+ { :request_style => :rpc, :request_use => :encoded,
759
+ :response_style => :rpc, :response_use => :encoded,
760
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
761
+ ],
762
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getNotificationSchemes"),
763
+ "",
764
+ "getNotificationSchemes",
765
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
766
+ [:retval, "getNotificationSchemesReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteScheme", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteScheme"]] ],
767
+ { :request_style => :rpc, :request_use => :encoded,
768
+ :response_style => :rpc, :response_use => :encoded,
769
+ :faults => {"Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
770
+ ],
771
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getPermissionSchemes"),
772
+ "",
773
+ "getPermissionSchemes",
774
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
775
+ [:retval, "getPermissionSchemesReturn", ["Jira4R::V2::ArrayOf_tns1_RemotePermissionScheme", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemotePermissionScheme"]] ],
776
+ { :request_style => :rpc, :request_use => :encoded,
777
+ :response_style => :rpc, :response_use => :encoded,
778
+ :faults => {"Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
779
+ ],
780
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "createPermissionScheme"),
781
+ "",
782
+ "createPermissionScheme",
783
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
784
+ [:in, "in1", ["::SOAP::SOAPString"]],
785
+ [:in, "in2", ["::SOAP::SOAPString"]],
786
+ [:retval, "createPermissionSchemeReturn", ["Jira4R::V2::RemotePermissionScheme", "http://beans.soap.rpc.jira.atlassian.com", "RemotePermissionScheme"]] ],
787
+ { :request_style => :rpc, :request_use => :encoded,
788
+ :response_style => :rpc, :response_use => :encoded,
789
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
790
+ ],
791
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "deletePermissionScheme"),
792
+ "",
793
+ "deletePermissionScheme",
794
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
795
+ [:in, "in1", ["::SOAP::SOAPString"]] ],
796
+ { :request_style => :rpc, :request_use => :encoded,
797
+ :response_style => :rpc, :response_use => :encoded,
798
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
799
+ ],
800
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "addPermissionTo"),
801
+ "",
802
+ "addPermissionTo",
803
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
804
+ [:in, "in1", ["Jira4R::V2::RemotePermissionScheme", "http://beans.soap.rpc.jira.atlassian.com", "RemotePermissionScheme"]],
805
+ [:in, "in2", ["Jira4R::V2::RemotePermission", "http://beans.soap.rpc.jira.atlassian.com", "RemotePermission"]],
806
+ [:in, "in3", ["Jira4R::V2::RemoteEntity", "http://beans.soap.rpc.jira.atlassian.com", "RemoteEntity"]],
807
+ [:retval, "addPermissionToReturn", ["Jira4R::V2::RemotePermissionScheme", "http://beans.soap.rpc.jira.atlassian.com", "RemotePermissionScheme"]] ],
808
+ { :request_style => :rpc, :request_use => :encoded,
809
+ :response_style => :rpc, :response_use => :encoded,
810
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
811
+ ],
812
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "deletePermissionFrom"),
813
+ "",
814
+ "deletePermissionFrom",
815
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
816
+ [:in, "in1", ["Jira4R::V2::RemotePermissionScheme", "http://beans.soap.rpc.jira.atlassian.com", "RemotePermissionScheme"]],
817
+ [:in, "in2", ["Jira4R::V2::RemotePermission", "http://beans.soap.rpc.jira.atlassian.com", "RemotePermission"]],
818
+ [:in, "in3", ["Jira4R::V2::RemoteEntity", "http://beans.soap.rpc.jira.atlassian.com", "RemoteEntity"]],
819
+ [:retval, "deletePermissionFromReturn", ["Jira4R::V2::RemotePermissionScheme", "http://beans.soap.rpc.jira.atlassian.com", "RemotePermissionScheme"]] ],
820
+ { :request_style => :rpc, :request_use => :encoded,
821
+ :response_style => :rpc, :response_use => :encoded,
822
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
823
+ ],
824
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getAllPermissions"),
825
+ "",
826
+ "getAllPermissions",
827
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
828
+ [:retval, "getAllPermissionsReturn", ["Jira4R::V2::ArrayOf_tns1_RemotePermission", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemotePermission"]] ],
829
+ { :request_style => :rpc, :request_use => :encoded,
830
+ :response_style => :rpc, :response_use => :encoded,
831
+ :faults => {"Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
832
+ ],
833
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getIssueCountForFilter"),
834
+ "",
835
+ "getIssueCountForFilter",
836
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
837
+ [:in, "in1", ["::SOAP::SOAPString"]],
838
+ [:retval, "getIssueCountForFilterReturn", ["::SOAP::SOAPLong"]] ],
839
+ { :request_style => :rpc, :request_use => :encoded,
840
+ :response_style => :rpc, :response_use => :encoded,
841
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
842
+ ],
843
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getIssuesFromTextSearch"),
844
+ "",
845
+ "getIssuesFromTextSearch",
846
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
847
+ [:in, "in1", ["::SOAP::SOAPString"]],
848
+ [:retval, "getIssuesFromTextSearchReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteIssue", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteIssue"]] ],
849
+ { :request_style => :rpc, :request_use => :encoded,
850
+ :response_style => :rpc, :response_use => :encoded,
851
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
852
+ ],
853
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getIssuesFromTextSearchWithProject"),
854
+ "",
855
+ "getIssuesFromTextSearchWithProject",
856
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
857
+ [:in, "in1", ["Jira4R::V2::ArrayOf_xsd_string", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_xsd_string"]],
858
+ [:in, "in2", ["::SOAP::SOAPString"]],
859
+ [:in, "in3", ["::SOAP::SOAPInt"]],
860
+ [:retval, "getIssuesFromTextSearchWithProjectReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteIssue", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteIssue"]] ],
861
+ { :request_style => :rpc, :request_use => :encoded,
862
+ :response_style => :rpc, :response_use => :encoded,
863
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
864
+ ],
865
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "deleteUser"),
866
+ "",
867
+ "deleteUser",
868
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
869
+ [:in, "in1", ["::SOAP::SOAPString"]] ],
870
+ { :request_style => :rpc, :request_use => :encoded,
871
+ :response_style => :rpc, :response_use => :encoded,
872
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
873
+ ],
874
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "updateGroup"),
875
+ "",
876
+ "updateGroup",
877
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
878
+ [:in, "in1", ["Jira4R::V2::RemoteGroup", "http://beans.soap.rpc.jira.atlassian.com", "RemoteGroup"]],
879
+ [:retval, "updateGroupReturn", ["Jira4R::V2::RemoteGroup", "http://beans.soap.rpc.jira.atlassian.com", "RemoteGroup"]] ],
880
+ { :request_style => :rpc, :request_use => :encoded,
881
+ :response_style => :rpc, :response_use => :encoded,
882
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
883
+ ],
884
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "deleteGroup"),
885
+ "",
886
+ "deleteGroup",
887
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
888
+ [:in, "in1", ["::SOAP::SOAPString"]],
889
+ [:in, "in2", ["::SOAP::SOAPString"]] ],
890
+ { :request_style => :rpc, :request_use => :encoded,
891
+ :response_style => :rpc, :response_use => :encoded,
892
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
893
+ ],
894
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "refreshCustomFields"),
895
+ "",
896
+ "refreshCustomFields",
897
+ [ [:in, "in0", ["::SOAP::SOAPString"]] ],
898
+ { :request_style => :rpc, :request_use => :encoded,
899
+ :response_style => :rpc, :response_use => :encoded,
900
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
901
+ ],
902
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getProjectsNoSchemes"),
903
+ "",
904
+ "getProjectsNoSchemes",
905
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
906
+ [:retval, "getProjectsNoSchemesReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteProject", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteProject"]] ],
907
+ { :request_style => :rpc, :request_use => :encoded,
908
+ :response_style => :rpc, :response_use => :encoded,
909
+ :faults => {"Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
910
+ ],
911
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "addVersion"),
912
+ "",
913
+ "addVersion",
914
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
915
+ [:in, "in1", ["::SOAP::SOAPString"]],
916
+ [:in, "in2", ["Jira4R::V2::RemoteVersion", "http://beans.soap.rpc.jira.atlassian.com", "RemoteVersion"]],
917
+ [:retval, "addVersionReturn", ["Jira4R::V2::RemoteVersion", "http://beans.soap.rpc.jira.atlassian.com", "RemoteVersion"]] ],
918
+ { :request_style => :rpc, :request_use => :encoded,
919
+ :response_style => :rpc, :response_use => :encoded,
920
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
921
+ ],
922
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "createProjectFromObject"),
923
+ "",
924
+ "createProjectFromObject",
925
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
926
+ [:in, "in1", ["Jira4R::V2::RemoteProject", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProject"]],
927
+ [:retval, "createProjectFromObjectReturn", ["Jira4R::V2::RemoteProject", "http://beans.soap.rpc.jira.atlassian.com", "RemoteProject"]] ],
928
+ { :request_style => :rpc, :request_use => :encoded,
929
+ :response_style => :rpc, :response_use => :encoded,
930
+ :faults => {"Jira4R::V2::RemoteValidationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteValidationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
931
+ ],
932
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getSecuritySchemes"),
933
+ "",
934
+ "getSecuritySchemes",
935
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
936
+ [:retval, "getSecuritySchemesReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteScheme", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteScheme"]] ],
937
+ { :request_style => :rpc, :request_use => :encoded,
938
+ :response_style => :rpc, :response_use => :encoded,
939
+ :faults => {"Jira4R::V2::RemotePermissionException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemotePermissionException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteAuthenticationException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteAuthenticationException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}, "Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
940
+ ],
941
+ [ XSD::QName.new(NsSoapRpcJiraAtlassianCom, "getIssuesFromFilter"),
942
+ "",
943
+ "getIssuesFromFilter",
944
+ [ [:in, "in0", ["::SOAP::SOAPString"]],
945
+ [:in, "in1", ["::SOAP::SOAPString"]],
946
+ [:retval, "getIssuesFromFilterReturn", ["Jira4R::V2::ArrayOf_tns1_RemoteIssue", "http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", "ArrayOf_tns1_RemoteIssue"]] ],
947
+ { :request_style => :rpc, :request_use => :encoded,
948
+ :response_style => :rpc, :response_use => :encoded,
949
+ :faults => {"Jira4R::V2::RemoteException_"=>{:ns=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :name=>"RemoteException", :namespace=>"http://jira.atlassian.com/rpc/soap/jirasoapservice-v2", :use=>"encoded", :encodingstyle=>"http://schemas.xmlsoap.org/soap/encoding/"}} }
950
+ ]
951
+ ]
952
+
953
+ def initialize(endpoint_url = nil)
954
+ endpoint_url ||= DefaultEndpointUrl
955
+ super(endpoint_url, nil)
956
+ self.mapping_registry = DefaultMappingRegistry::EncodedRegistry
957
+ self.literal_mapping_registry = DefaultMappingRegistry::LiteralRegistry
958
+ init_methods
959
+ end
960
+
961
+ private
962
+
963
+ def init_methods
964
+ Methods.each do |definitions|
965
+ opt = definitions.last
966
+ if opt[:request_style] == :document
967
+ add_document_operation(*definitions)
968
+ else
969
+ add_rpc_operation(*definitions)
970
+ qname = definitions[0]
971
+ name = definitions[2]
972
+ if qname.name != name and qname.name.capitalize == name.capitalize
973
+ ::SOAP::Mapping.define_singleton_method(self, qname.name) do |*arg|
974
+ __send__(name, *arg)
975
+ end
976
+ end
977
+ end
978
+ end
979
+ end
980
+ end
981
+
982
+ end