jira4r-19 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/LICENSE +14 -0
- data/NOTICE +3 -0
- data/README.txt +12 -0
- data/Rakefile +131 -0
- data/lib/jira4r/jira4r.rb +34 -0
- data/lib/jira4r/jira_tool.rb +209 -0
- data/lib/jira4r/v2/JiraSoapServiceDriver.rb +982 -0
- data/lib/jira4r/v2/jiraService.rb +818 -0
- data/lib/jira4r/v2/jiraServiceMappingRegistry.rb +977 -0
- data/lib/jiraService.rb +21 -0
- data/lib/jiraServiceMappingRegistry.rb +21 -0
- data/wsdl/jirasoapservice-v2.wsdl +6019 -0
- metadata +68 -0
| @@ -0,0 +1,977 @@ | |
| 1 | 
            +
            # encoding: ASCII-8BIT
         | 
| 2 | 
            +
            require 'jiraService.rb'
         | 
| 3 | 
            +
            require 'soap/mapping'
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            module Jira4R; module V2
         | 
| 6 | 
            +
             | 
| 7 | 
            +
            module DefaultMappingRegistry
         | 
| 8 | 
            +
              EncodedRegistry = ::SOAP::Mapping::EncodedRegistry.new
         | 
| 9 | 
            +
              LiteralRegistry = ::SOAP::Mapping::LiteralRegistry.new
         | 
| 10 | 
            +
              NsBeansSoapRpcJiraAtlassianCom = "http://beans.soap.rpc.jira.atlassian.com"
         | 
| 11 | 
            +
              NsExceptionRpcJiraAtlassianCom = "http://exception.rpc.jira.atlassian.com"
         | 
| 12 | 
            +
             | 
| 13 | 
            +
              EncodedRegistry.register(
         | 
| 14 | 
            +
                :class => Jira4R::V2::RemoteComment,
         | 
| 15 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteComment"),
         | 
| 16 | 
            +
                :schema_element => [
         | 
| 17 | 
            +
                  ["author", ["SOAP::SOAPString", XSD::QName.new(nil, "author")]],
         | 
| 18 | 
            +
                  ["body", ["SOAP::SOAPString", XSD::QName.new(nil, "body")]],
         | 
| 19 | 
            +
                  ["created", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "created")]],
         | 
| 20 | 
            +
                  ["groupLevel", ["SOAP::SOAPString", XSD::QName.new(nil, "groupLevel")]],
         | 
| 21 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 22 | 
            +
                  ["roleLevel", ["SOAP::SOAPString", XSD::QName.new(nil, "roleLevel")]],
         | 
| 23 | 
            +
                  ["updateAuthor", ["SOAP::SOAPString", XSD::QName.new(nil, "updateAuthor")]],
         | 
| 24 | 
            +
                  ["updated", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "updated")]]
         | 
| 25 | 
            +
                ]
         | 
| 26 | 
            +
              )
         | 
| 27 | 
            +
             | 
| 28 | 
            +
              EncodedRegistry.register(
         | 
| 29 | 
            +
                :class => Jira4R::V2::RemoteEntity,
         | 
| 30 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteEntity"),
         | 
| 31 | 
            +
                :schema_element => []
         | 
| 32 | 
            +
              )
         | 
| 33 | 
            +
             | 
| 34 | 
            +
              EncodedRegistry.register(
         | 
| 35 | 
            +
                :class => Jira4R::V2::RemoteUser,
         | 
| 36 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteUser"),
         | 
| 37 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteEntity"),
         | 
| 38 | 
            +
                :schema_element => [
         | 
| 39 | 
            +
                  ["email", ["SOAP::SOAPString", XSD::QName.new(nil, "email")]],
         | 
| 40 | 
            +
                  ["fullname", ["SOAP::SOAPString", XSD::QName.new(nil, "fullname")]],
         | 
| 41 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]]
         | 
| 42 | 
            +
                ]
         | 
| 43 | 
            +
              )
         | 
| 44 | 
            +
             | 
| 45 | 
            +
              EncodedRegistry.register(
         | 
| 46 | 
            +
                :class => Jira4R::V2::RemoteGroup,
         | 
| 47 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteGroup"),
         | 
| 48 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteEntity"),
         | 
| 49 | 
            +
                :schema_element => [
         | 
| 50 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
         | 
| 51 | 
            +
                  ["users", ["Jira4R::V2::ArrayOf_tns1_RemoteUser", XSD::QName.new(nil, "users")]]
         | 
| 52 | 
            +
                ]
         | 
| 53 | 
            +
              )
         | 
| 54 | 
            +
             | 
| 55 | 
            +
              EncodedRegistry.register(
         | 
| 56 | 
            +
                :class => Jira4R::V2::RemoteServerInfo,
         | 
| 57 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteServerInfo"),
         | 
| 58 | 
            +
                :schema_element => [
         | 
| 59 | 
            +
                  ["baseUrl", ["SOAP::SOAPString", XSD::QName.new(nil, "baseUrl")]],
         | 
| 60 | 
            +
                  ["buildDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "buildDate")]],
         | 
| 61 | 
            +
                  ["buildNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "buildNumber")]],
         | 
| 62 | 
            +
                  ["edition", ["SOAP::SOAPString", XSD::QName.new(nil, "edition")]],
         | 
| 63 | 
            +
                  ["version", ["SOAP::SOAPString", XSD::QName.new(nil, "version")]]
         | 
| 64 | 
            +
                ]
         | 
| 65 | 
            +
              )
         | 
| 66 | 
            +
             | 
| 67 | 
            +
              EncodedRegistry.register(
         | 
| 68 | 
            +
                :class => Jira4R::V2::RemoteVersion,
         | 
| 69 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteVersion"),
         | 
| 70 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractNamedRemoteEntity"),
         | 
| 71 | 
            +
                :schema_element => [
         | 
| 72 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 73 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
         | 
| 74 | 
            +
                  ["archived", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "archived")]],
         | 
| 75 | 
            +
                  ["releaseDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "releaseDate")]],
         | 
| 76 | 
            +
                  ["released", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "released")]],
         | 
| 77 | 
            +
                  ["sequence", ["SOAP::SOAPLong", XSD::QName.new(nil, "sequence")]]
         | 
| 78 | 
            +
                ]
         | 
| 79 | 
            +
              )
         | 
| 80 | 
            +
             | 
| 81 | 
            +
              EncodedRegistry.register(
         | 
| 82 | 
            +
                :class => Jira4R::V2::RemoteComponent,
         | 
| 83 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteComponent"),
         | 
| 84 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractNamedRemoteEntity"),
         | 
| 85 | 
            +
                :schema_element => [
         | 
| 86 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 87 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]]
         | 
| 88 | 
            +
                ]
         | 
| 89 | 
            +
              )
         | 
| 90 | 
            +
             | 
| 91 | 
            +
              EncodedRegistry.register(
         | 
| 92 | 
            +
                :class => Jira4R::V2::RemoteCustomFieldValue,
         | 
| 93 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteCustomFieldValue"),
         | 
| 94 | 
            +
                :schema_element => [
         | 
| 95 | 
            +
                  ["customfieldId", ["SOAP::SOAPString", XSD::QName.new(nil, "customfieldId")]],
         | 
| 96 | 
            +
                  ["key", ["SOAP::SOAPString", XSD::QName.new(nil, "key")]],
         | 
| 97 | 
            +
                  ["values", ["Jira4R::V2::ArrayOf_xsd_string", XSD::QName.new(nil, "values")]]
         | 
| 98 | 
            +
                ]
         | 
| 99 | 
            +
              )
         | 
| 100 | 
            +
             | 
| 101 | 
            +
              EncodedRegistry.register(
         | 
| 102 | 
            +
                :class => Jira4R::V2::RemoteIssue,
         | 
| 103 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteIssue"),
         | 
| 104 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractRemoteEntity"),
         | 
| 105 | 
            +
                :schema_element => [
         | 
| 106 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 107 | 
            +
                  ["affectsVersions", ["Jira4R::V2::ArrayOf_tns1_RemoteVersion", XSD::QName.new(nil, "affectsVersions")]],
         | 
| 108 | 
            +
                  ["assignee", ["SOAP::SOAPString", XSD::QName.new(nil, "assignee")]],
         | 
| 109 | 
            +
                  ["attachmentNames", ["Jira4R::V2::ArrayOf_xsd_string", XSD::QName.new(nil, "attachmentNames")]],
         | 
| 110 | 
            +
                  ["components", ["Jira4R::V2::ArrayOf_tns1_RemoteComponent", XSD::QName.new(nil, "components")]],
         | 
| 111 | 
            +
                  ["created", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "created")]],
         | 
| 112 | 
            +
                  ["customFieldValues", ["Jira4R::V2::ArrayOf_tns1_RemoteCustomFieldValue", XSD::QName.new(nil, "customFieldValues")]],
         | 
| 113 | 
            +
                  ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
         | 
| 114 | 
            +
                  ["duedate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "duedate")]],
         | 
| 115 | 
            +
                  ["environment", ["SOAP::SOAPString", XSD::QName.new(nil, "environment")]],
         | 
| 116 | 
            +
                  ["fixVersions", ["Jira4R::V2::ArrayOf_tns1_RemoteVersion", XSD::QName.new(nil, "fixVersions")]],
         | 
| 117 | 
            +
                  ["key", ["SOAP::SOAPString", XSD::QName.new(nil, "key")]],
         | 
| 118 | 
            +
                  ["priority", ["SOAP::SOAPString", XSD::QName.new(nil, "priority")]],
         | 
| 119 | 
            +
                  ["project", ["SOAP::SOAPString", XSD::QName.new(nil, "project")]],
         | 
| 120 | 
            +
                  ["reporter", ["SOAP::SOAPString", XSD::QName.new(nil, "reporter")]],
         | 
| 121 | 
            +
                  ["resolution", ["SOAP::SOAPString", XSD::QName.new(nil, "resolution")]],
         | 
| 122 | 
            +
                  ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]],
         | 
| 123 | 
            +
                  ["summary", ["SOAP::SOAPString", XSD::QName.new(nil, "summary")]],
         | 
| 124 | 
            +
                  ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]],
         | 
| 125 | 
            +
                  ["updated", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "updated")]],
         | 
| 126 | 
            +
                  ["votes", ["SOAP::SOAPLong", XSD::QName.new(nil, "votes")]]
         | 
| 127 | 
            +
                ]
         | 
| 128 | 
            +
              )
         | 
| 129 | 
            +
             | 
| 130 | 
            +
              EncodedRegistry.register(
         | 
| 131 | 
            +
                :class => Jira4R::V2::RemoteNamedObject,
         | 
| 132 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteNamedObject"),
         | 
| 133 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractNamedRemoteEntity"),
         | 
| 134 | 
            +
                :schema_element => [
         | 
| 135 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 136 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]]
         | 
| 137 | 
            +
                ]
         | 
| 138 | 
            +
              )
         | 
| 139 | 
            +
             | 
| 140 | 
            +
              EncodedRegistry.register(
         | 
| 141 | 
            +
                :class => Jira4R::V2::RemoteScheme,
         | 
| 142 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteScheme"),
         | 
| 143 | 
            +
                :schema_element => [
         | 
| 144 | 
            +
                  ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
         | 
| 145 | 
            +
                  ["id", ["SOAP::SOAPLong", XSD::QName.new(nil, "id")]],
         | 
| 146 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
         | 
| 147 | 
            +
                  ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]]
         | 
| 148 | 
            +
                ]
         | 
| 149 | 
            +
              )
         | 
| 150 | 
            +
             | 
| 151 | 
            +
              EncodedRegistry.register(
         | 
| 152 | 
            +
                :class => Jira4R::V2::RemotePermission,
         | 
| 153 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemotePermission"),
         | 
| 154 | 
            +
                :schema_element => [
         | 
| 155 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
         | 
| 156 | 
            +
                  ["permission", ["SOAP::SOAPLong", XSD::QName.new(nil, "permission")]]
         | 
| 157 | 
            +
                ]
         | 
| 158 | 
            +
              )
         | 
| 159 | 
            +
             | 
| 160 | 
            +
              EncodedRegistry.register(
         | 
| 161 | 
            +
                :class => Jira4R::V2::RemotePermissionMapping,
         | 
| 162 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemotePermissionMapping"),
         | 
| 163 | 
            +
                :schema_element => [
         | 
| 164 | 
            +
                  ["permission", ["Jira4R::V2::RemotePermission", XSD::QName.new(nil, "permission")]],
         | 
| 165 | 
            +
                  ["remoteEntities", ["Jira4R::V2::ArrayOf_tns1_RemoteEntity", XSD::QName.new(nil, "remoteEntities")]]
         | 
| 166 | 
            +
                ]
         | 
| 167 | 
            +
              )
         | 
| 168 | 
            +
             | 
| 169 | 
            +
              EncodedRegistry.register(
         | 
| 170 | 
            +
                :class => Jira4R::V2::RemotePermissionScheme,
         | 
| 171 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemotePermissionScheme"),
         | 
| 172 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteScheme"),
         | 
| 173 | 
            +
                :schema_element => [
         | 
| 174 | 
            +
                  ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
         | 
| 175 | 
            +
                  ["id", ["SOAP::SOAPLong", XSD::QName.new(nil, "id")]],
         | 
| 176 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
         | 
| 177 | 
            +
                  ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]],
         | 
| 178 | 
            +
                  ["permissionMappings", ["Jira4R::V2::ArrayOf_tns1_RemotePermissionMapping", XSD::QName.new(nil, "permissionMappings")]]
         | 
| 179 | 
            +
                ]
         | 
| 180 | 
            +
              )
         | 
| 181 | 
            +
             | 
| 182 | 
            +
              EncodedRegistry.register(
         | 
| 183 | 
            +
                :class => Jira4R::V2::RemoteProject,
         | 
| 184 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteProject"),
         | 
| 185 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractNamedRemoteEntity"),
         | 
| 186 | 
            +
                :schema_element => [
         | 
| 187 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 188 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
         | 
| 189 | 
            +
                  ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
         | 
| 190 | 
            +
                  ["issueSecurityScheme", ["Jira4R::V2::RemoteScheme", XSD::QName.new(nil, "issueSecurityScheme")]],
         | 
| 191 | 
            +
                  ["key", ["SOAP::SOAPString", XSD::QName.new(nil, "key")]],
         | 
| 192 | 
            +
                  ["lead", ["SOAP::SOAPString", XSD::QName.new(nil, "lead")]],
         | 
| 193 | 
            +
                  ["notificationScheme", ["Jira4R::V2::RemoteScheme", XSD::QName.new(nil, "notificationScheme")]],
         | 
| 194 | 
            +
                  ["permissionScheme", ["Jira4R::V2::RemotePermissionScheme", XSD::QName.new(nil, "permissionScheme")]],
         | 
| 195 | 
            +
                  ["projectUrl", ["SOAP::SOAPString", XSD::QName.new(nil, "projectUrl")]],
         | 
| 196 | 
            +
                  ["url", ["SOAP::SOAPString", XSD::QName.new(nil, "url")]]
         | 
| 197 | 
            +
                ]
         | 
| 198 | 
            +
              )
         | 
| 199 | 
            +
             | 
| 200 | 
            +
              EncodedRegistry.register(
         | 
| 201 | 
            +
                :class => Jira4R::V2::RemoteFieldValue,
         | 
| 202 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteFieldValue"),
         | 
| 203 | 
            +
                :schema_element => [
         | 
| 204 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 205 | 
            +
                  ["values", ["Jira4R::V2::ArrayOf_xsd_string", XSD::QName.new(nil, "values")]]
         | 
| 206 | 
            +
                ]
         | 
| 207 | 
            +
              )
         | 
| 208 | 
            +
             | 
| 209 | 
            +
              EncodedRegistry.register(
         | 
| 210 | 
            +
                :class => Jira4R::V2::RemoteConfiguration,
         | 
| 211 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteConfiguration"),
         | 
| 212 | 
            +
                :schema_element => [
         | 
| 213 | 
            +
                  ["allowAttachments", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowAttachments")]],
         | 
| 214 | 
            +
                  ["allowExternalUserManagment", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowExternalUserManagment")]],
         | 
| 215 | 
            +
                  ["allowIssueLinking", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowIssueLinking")]],
         | 
| 216 | 
            +
                  ["allowSubTasks", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowSubTasks")]],
         | 
| 217 | 
            +
                  ["allowTimeTracking", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowTimeTracking")]],
         | 
| 218 | 
            +
                  ["allowUnassignedIssues", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowUnassignedIssues")]],
         | 
| 219 | 
            +
                  ["allowVoting", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowVoting")]],
         | 
| 220 | 
            +
                  ["allowWatching", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowWatching")]],
         | 
| 221 | 
            +
                  ["timeTrackingDaysPerWeek", ["SOAP::SOAPInt", XSD::QName.new(nil, "timeTrackingDaysPerWeek")]],
         | 
| 222 | 
            +
                  ["timeTrackingHoursPerDay", ["SOAP::SOAPInt", XSD::QName.new(nil, "timeTrackingHoursPerDay")]]
         | 
| 223 | 
            +
                ]
         | 
| 224 | 
            +
              )
         | 
| 225 | 
            +
             | 
| 226 | 
            +
              EncodedRegistry.register(
         | 
| 227 | 
            +
                :class => Jira4R::V2::RemotePriority,
         | 
| 228 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemotePriority"),
         | 
| 229 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractRemoteConstant"),
         | 
| 230 | 
            +
                :schema_element => [
         | 
| 231 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 232 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
         | 
| 233 | 
            +
                  ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
         | 
| 234 | 
            +
                  ["icon", ["SOAP::SOAPString", XSD::QName.new(nil, "icon")]],
         | 
| 235 | 
            +
                  ["color", ["SOAP::SOAPString", XSD::QName.new(nil, "color")]]
         | 
| 236 | 
            +
                ]
         | 
| 237 | 
            +
              )
         | 
| 238 | 
            +
             | 
| 239 | 
            +
              EncodedRegistry.register(
         | 
| 240 | 
            +
                :class => Jira4R::V2::RemoteResolution,
         | 
| 241 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteResolution"),
         | 
| 242 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractRemoteConstant"),
         | 
| 243 | 
            +
                :schema_element => [
         | 
| 244 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 245 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
         | 
| 246 | 
            +
                  ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
         | 
| 247 | 
            +
                  ["icon", ["SOAP::SOAPString", XSD::QName.new(nil, "icon")]]
         | 
| 248 | 
            +
                ]
         | 
| 249 | 
            +
              )
         | 
| 250 | 
            +
             | 
| 251 | 
            +
              EncodedRegistry.register(
         | 
| 252 | 
            +
                :class => Jira4R::V2::RemoteIssueType,
         | 
| 253 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteIssueType"),
         | 
| 254 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractRemoteConstant"),
         | 
| 255 | 
            +
                :schema_element => [
         | 
| 256 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 257 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
         | 
| 258 | 
            +
                  ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
         | 
| 259 | 
            +
                  ["icon", ["SOAP::SOAPString", XSD::QName.new(nil, "icon")]],
         | 
| 260 | 
            +
                  ["subTask", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "subTask")]]
         | 
| 261 | 
            +
                ]
         | 
| 262 | 
            +
              )
         | 
| 263 | 
            +
             | 
| 264 | 
            +
              EncodedRegistry.register(
         | 
| 265 | 
            +
                :class => Jira4R::V2::RemoteStatus,
         | 
| 266 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteStatus"),
         | 
| 267 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractRemoteConstant"),
         | 
| 268 | 
            +
                :schema_element => [
         | 
| 269 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 270 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
         | 
| 271 | 
            +
                  ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
         | 
| 272 | 
            +
                  ["icon", ["SOAP::SOAPString", XSD::QName.new(nil, "icon")]]
         | 
| 273 | 
            +
                ]
         | 
| 274 | 
            +
              )
         | 
| 275 | 
            +
             | 
| 276 | 
            +
              EncodedRegistry.register(
         | 
| 277 | 
            +
                :class => Jira4R::V2::RemoteProjectRole,
         | 
| 278 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteProjectRole"),
         | 
| 279 | 
            +
                :schema_element => [
         | 
| 280 | 
            +
                  ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
         | 
| 281 | 
            +
                  ["id", ["SOAP::SOAPLong", XSD::QName.new(nil, "id")]],
         | 
| 282 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]]
         | 
| 283 | 
            +
                ]
         | 
| 284 | 
            +
              )
         | 
| 285 | 
            +
             | 
| 286 | 
            +
              EncodedRegistry.register(
         | 
| 287 | 
            +
                :class => Jira4R::V2::RemoteRoleActor,
         | 
| 288 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteRoleActor"),
         | 
| 289 | 
            +
                :schema_element => [
         | 
| 290 | 
            +
                  ["descriptor", ["SOAP::SOAPString", XSD::QName.new(nil, "descriptor")]],
         | 
| 291 | 
            +
                  ["parameter", ["SOAP::SOAPString", XSD::QName.new(nil, "parameter")]],
         | 
| 292 | 
            +
                  ["projectRole", ["Jira4R::V2::RemoteProjectRole", XSD::QName.new(nil, "projectRole")]],
         | 
| 293 | 
            +
                  ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]],
         | 
| 294 | 
            +
                  ["users", ["Jira4R::V2::ArrayOf_tns1_RemoteUser", XSD::QName.new(nil, "users")]]
         | 
| 295 | 
            +
                ]
         | 
| 296 | 
            +
              )
         | 
| 297 | 
            +
             | 
| 298 | 
            +
              EncodedRegistry.register(
         | 
| 299 | 
            +
                :class => Jira4R::V2::RemoteRoleActors,
         | 
| 300 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteRoleActors"),
         | 
| 301 | 
            +
                :schema_element => [
         | 
| 302 | 
            +
                  ["projectRole", ["Jira4R::V2::RemoteProjectRole", XSD::QName.new(nil, "projectRole")]],
         | 
| 303 | 
            +
                  ["roleActors", ["Jira4R::V2::ArrayOf_tns1_RemoteRoleActor", XSD::QName.new(nil, "roleActors")]],
         | 
| 304 | 
            +
                  ["users", ["Jira4R::V2::ArrayOf_tns1_RemoteUser", XSD::QName.new(nil, "users")]]
         | 
| 305 | 
            +
                ]
         | 
| 306 | 
            +
              )
         | 
| 307 | 
            +
             | 
| 308 | 
            +
              EncodedRegistry.register(
         | 
| 309 | 
            +
                :class => Jira4R::V2::RemoteProjectRoleActors,
         | 
| 310 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteProjectRoleActors"),
         | 
| 311 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteRoleActors"),
         | 
| 312 | 
            +
                :schema_element => [
         | 
| 313 | 
            +
                  ["projectRole", ["Jira4R::V2::RemoteProjectRole", XSD::QName.new(nil, "projectRole")]],
         | 
| 314 | 
            +
                  ["roleActors", ["Jira4R::V2::ArrayOf_tns1_RemoteRoleActor", XSD::QName.new(nil, "roleActors")]],
         | 
| 315 | 
            +
                  ["users", ["Jira4R::V2::ArrayOf_tns1_RemoteUser", XSD::QName.new(nil, "users")]],
         | 
| 316 | 
            +
                  ["project", ["Jira4R::V2::RemoteProject", XSD::QName.new(nil, "project")]]
         | 
| 317 | 
            +
                ]
         | 
| 318 | 
            +
              )
         | 
| 319 | 
            +
             | 
| 320 | 
            +
              EncodedRegistry.register(
         | 
| 321 | 
            +
                :class => Jira4R::V2::RemoteField,
         | 
| 322 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteField"),
         | 
| 323 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractNamedRemoteEntity"),
         | 
| 324 | 
            +
                :schema_element => [
         | 
| 325 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 326 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]]
         | 
| 327 | 
            +
                ]
         | 
| 328 | 
            +
              )
         | 
| 329 | 
            +
             | 
| 330 | 
            +
              EncodedRegistry.register(
         | 
| 331 | 
            +
                :class => Jira4R::V2::RemoteFilter,
         | 
| 332 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteFilter"),
         | 
| 333 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractNamedRemoteEntity"),
         | 
| 334 | 
            +
                :schema_element => [
         | 
| 335 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 336 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
         | 
| 337 | 
            +
                  ["author", ["SOAP::SOAPString", XSD::QName.new(nil, "author")]],
         | 
| 338 | 
            +
                  ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
         | 
| 339 | 
            +
                  ["project", ["SOAP::SOAPString", XSD::QName.new(nil, "project")]],
         | 
| 340 | 
            +
                  ["xml", ["SOAP::SOAPString", XSD::QName.new(nil, "xml")]]
         | 
| 341 | 
            +
                ]
         | 
| 342 | 
            +
              )
         | 
| 343 | 
            +
             | 
| 344 | 
            +
              EncodedRegistry.register(
         | 
| 345 | 
            +
                :class => Jira4R::V2::RemoteAttachment,
         | 
| 346 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteAttachment"),
         | 
| 347 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractRemoteEntity"),
         | 
| 348 | 
            +
                :schema_element => [
         | 
| 349 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 350 | 
            +
                  ["author", ["SOAP::SOAPString", XSD::QName.new(nil, "author")]],
         | 
| 351 | 
            +
                  ["created", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "created")]],
         | 
| 352 | 
            +
                  ["filename", ["SOAP::SOAPString", XSD::QName.new(nil, "filename")]],
         | 
| 353 | 
            +
                  ["filesize", ["SOAP::SOAPLong", XSD::QName.new(nil, "filesize")]],
         | 
| 354 | 
            +
                  ["mimetype", ["SOAP::SOAPString", XSD::QName.new(nil, "mimetype")]]
         | 
| 355 | 
            +
                ]
         | 
| 356 | 
            +
              )
         | 
| 357 | 
            +
             | 
| 358 | 
            +
              EncodedRegistry.register(
         | 
| 359 | 
            +
                :class => Jira4R::V2::RemoteWorklog,
         | 
| 360 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteWorklog"),
         | 
| 361 | 
            +
                :schema_element => [
         | 
| 362 | 
            +
                  ["author", ["SOAP::SOAPString", XSD::QName.new(nil, "author")]],
         | 
| 363 | 
            +
                  ["comment", ["SOAP::SOAPString", XSD::QName.new(nil, "comment")]],
         | 
| 364 | 
            +
                  ["created", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "created")]],
         | 
| 365 | 
            +
                  ["groupLevel", ["SOAP::SOAPString", XSD::QName.new(nil, "groupLevel")]],
         | 
| 366 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 367 | 
            +
                  ["roleLevelId", ["SOAP::SOAPString", XSD::QName.new(nil, "roleLevelId")]],
         | 
| 368 | 
            +
                  ["startDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "startDate")]],
         | 
| 369 | 
            +
                  ["timeSpent", ["SOAP::SOAPString", XSD::QName.new(nil, "timeSpent")]],
         | 
| 370 | 
            +
                  ["timeSpentInSeconds", ["SOAP::SOAPLong", XSD::QName.new(nil, "timeSpentInSeconds")]],
         | 
| 371 | 
            +
                  ["updateAuthor", ["SOAP::SOAPString", XSD::QName.new(nil, "updateAuthor")]],
         | 
| 372 | 
            +
                  ["updated", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "updated")]]
         | 
| 373 | 
            +
                ]
         | 
| 374 | 
            +
              )
         | 
| 375 | 
            +
             | 
| 376 | 
            +
              EncodedRegistry.register(
         | 
| 377 | 
            +
                :class => Jira4R::V2::RemoteException,
         | 
| 378 | 
            +
                :schema_type => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemoteException"),
         | 
| 379 | 
            +
                :schema_element => []
         | 
| 380 | 
            +
              )
         | 
| 381 | 
            +
             | 
| 382 | 
            +
              EncodedRegistry.register(
         | 
| 383 | 
            +
                :class => Jira4R::V2::RemoteAuthenticationException,
         | 
| 384 | 
            +
                :schema_type => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemoteAuthenticationException"),
         | 
| 385 | 
            +
                :schema_basetype => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemoteException"),
         | 
| 386 | 
            +
                :schema_element => []
         | 
| 387 | 
            +
              )
         | 
| 388 | 
            +
             | 
| 389 | 
            +
              EncodedRegistry.register(
         | 
| 390 | 
            +
                :class => Jira4R::V2::RemoteValidationException,
         | 
| 391 | 
            +
                :schema_type => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemoteValidationException"),
         | 
| 392 | 
            +
                :schema_basetype => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemoteException"),
         | 
| 393 | 
            +
                :schema_element => []
         | 
| 394 | 
            +
              )
         | 
| 395 | 
            +
             | 
| 396 | 
            +
              EncodedRegistry.register(
         | 
| 397 | 
            +
                :class => Jira4R::V2::RemotePermissionException,
         | 
| 398 | 
            +
                :schema_type => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemotePermissionException"),
         | 
| 399 | 
            +
                :schema_basetype => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemoteException"),
         | 
| 400 | 
            +
                :schema_element => []
         | 
| 401 | 
            +
              )
         | 
| 402 | 
            +
             | 
| 403 | 
            +
              EncodedRegistry.set(
         | 
| 404 | 
            +
                Jira4R::V2::ArrayOf_tns1_RemoteUser,
         | 
| 405 | 
            +
                ::SOAP::SOAPArray,
         | 
| 406 | 
            +
                ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
         | 
| 407 | 
            +
                { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteUser") }
         | 
| 408 | 
            +
              )
         | 
| 409 | 
            +
             | 
| 410 | 
            +
              EncodedRegistry.set(
         | 
| 411 | 
            +
                Jira4R::V2::ArrayOf_tns1_RemoteVersion,
         | 
| 412 | 
            +
                ::SOAP::SOAPArray,
         | 
| 413 | 
            +
                ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
         | 
| 414 | 
            +
                { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteVersion") }
         | 
| 415 | 
            +
              )
         | 
| 416 | 
            +
             | 
| 417 | 
            +
              EncodedRegistry.set(
         | 
| 418 | 
            +
                Jira4R::V2::ArrayOf_xsd_string,
         | 
| 419 | 
            +
                ::SOAP::SOAPArray,
         | 
| 420 | 
            +
                ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
         | 
| 421 | 
            +
                { :type => XSD::QName.new("http://www.w3.org/2001/XMLSchema", "string") }
         | 
| 422 | 
            +
              )
         | 
| 423 | 
            +
             | 
| 424 | 
            +
              EncodedRegistry.set(
         | 
| 425 | 
            +
                Jira4R::V2::ArrayOf_tns1_RemoteComponent,
         | 
| 426 | 
            +
                ::SOAP::SOAPArray,
         | 
| 427 | 
            +
                ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
         | 
| 428 | 
            +
                { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteComponent") }
         | 
| 429 | 
            +
              )
         | 
| 430 | 
            +
             | 
| 431 | 
            +
              EncodedRegistry.set(
         | 
| 432 | 
            +
                Jira4R::V2::ArrayOf_tns1_RemoteCustomFieldValue,
         | 
| 433 | 
            +
                ::SOAP::SOAPArray,
         | 
| 434 | 
            +
                ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
         | 
| 435 | 
            +
                { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteCustomFieldValue") }
         | 
| 436 | 
            +
              )
         | 
| 437 | 
            +
             | 
| 438 | 
            +
              EncodedRegistry.set(
         | 
| 439 | 
            +
                Jira4R::V2::ArrayOf_tns1_RemoteNamedObject,
         | 
| 440 | 
            +
                ::SOAP::SOAPArray,
         | 
| 441 | 
            +
                ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
         | 
| 442 | 
            +
                { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteNamedObject") }
         | 
| 443 | 
            +
              )
         | 
| 444 | 
            +
             | 
| 445 | 
            +
              EncodedRegistry.set(
         | 
| 446 | 
            +
                Jira4R::V2::ArrayOf_tns1_RemoteEntity,
         | 
| 447 | 
            +
                ::SOAP::SOAPArray,
         | 
| 448 | 
            +
                ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
         | 
| 449 | 
            +
                { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteEntity") }
         | 
| 450 | 
            +
              )
         | 
| 451 | 
            +
             | 
| 452 | 
            +
              EncodedRegistry.set(
         | 
| 453 | 
            +
                Jira4R::V2::ArrayOf_tns1_RemotePermissionMapping,
         | 
| 454 | 
            +
                ::SOAP::SOAPArray,
         | 
| 455 | 
            +
                ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
         | 
| 456 | 
            +
                { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemotePermissionMapping") }
         | 
| 457 | 
            +
              )
         | 
| 458 | 
            +
             | 
| 459 | 
            +
              EncodedRegistry.set(
         | 
| 460 | 
            +
                Jira4R::V2::ArrayOf_tns1_RemoteProject,
         | 
| 461 | 
            +
                ::SOAP::SOAPArray,
         | 
| 462 | 
            +
                ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
         | 
| 463 | 
            +
                { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteProject") }
         | 
| 464 | 
            +
              )
         | 
| 465 | 
            +
             | 
| 466 | 
            +
              EncodedRegistry.set(
         | 
| 467 | 
            +
                Jira4R::V2::ArrayOf_tns1_RemoteFieldValue,
         | 
| 468 | 
            +
                ::SOAP::SOAPArray,
         | 
| 469 | 
            +
                ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
         | 
| 470 | 
            +
                { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteFieldValue") }
         | 
| 471 | 
            +
              )
         | 
| 472 | 
            +
             | 
| 473 | 
            +
              EncodedRegistry.set(
         | 
| 474 | 
            +
                Jira4R::V2::ArrayOf_tns1_RemotePriority,
         | 
| 475 | 
            +
                ::SOAP::SOAPArray,
         | 
| 476 | 
            +
                ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
         | 
| 477 | 
            +
                { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemotePriority") }
         | 
| 478 | 
            +
              )
         | 
| 479 | 
            +
             | 
| 480 | 
            +
              EncodedRegistry.set(
         | 
| 481 | 
            +
                Jira4R::V2::ArrayOf_tns1_RemoteResolution,
         | 
| 482 | 
            +
                ::SOAP::SOAPArray,
         | 
| 483 | 
            +
                ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
         | 
| 484 | 
            +
                { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteResolution") }
         | 
| 485 | 
            +
              )
         | 
| 486 | 
            +
             | 
| 487 | 
            +
              EncodedRegistry.set(
         | 
| 488 | 
            +
                Jira4R::V2::ArrayOf_tns1_RemoteIssueType,
         | 
| 489 | 
            +
                ::SOAP::SOAPArray,
         | 
| 490 | 
            +
                ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
         | 
| 491 | 
            +
                { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteIssueType") }
         | 
| 492 | 
            +
              )
         | 
| 493 | 
            +
             | 
| 494 | 
            +
              EncodedRegistry.set(
         | 
| 495 | 
            +
                Jira4R::V2::ArrayOf_tns1_RemoteStatus,
         | 
| 496 | 
            +
                ::SOAP::SOAPArray,
         | 
| 497 | 
            +
                ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
         | 
| 498 | 
            +
                { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteStatus") }
         | 
| 499 | 
            +
              )
         | 
| 500 | 
            +
             | 
| 501 | 
            +
              EncodedRegistry.set(
         | 
| 502 | 
            +
                Jira4R::V2::ArrayOf_tns1_RemoteProjectRole,
         | 
| 503 | 
            +
                ::SOAP::SOAPArray,
         | 
| 504 | 
            +
                ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
         | 
| 505 | 
            +
                { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteProjectRole") }
         | 
| 506 | 
            +
              )
         | 
| 507 | 
            +
             | 
| 508 | 
            +
              EncodedRegistry.set(
         | 
| 509 | 
            +
                Jira4R::V2::ArrayOf_tns1_RemoteRoleActor,
         | 
| 510 | 
            +
                ::SOAP::SOAPArray,
         | 
| 511 | 
            +
                ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
         | 
| 512 | 
            +
                { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteRoleActor") }
         | 
| 513 | 
            +
              )
         | 
| 514 | 
            +
             | 
| 515 | 
            +
              EncodedRegistry.set(
         | 
| 516 | 
            +
                Jira4R::V2::ArrayOf_tns1_RemoteScheme,
         | 
| 517 | 
            +
                ::SOAP::SOAPArray,
         | 
| 518 | 
            +
                ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
         | 
| 519 | 
            +
                { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteScheme") }
         | 
| 520 | 
            +
              )
         | 
| 521 | 
            +
             | 
| 522 | 
            +
              EncodedRegistry.set(
         | 
| 523 | 
            +
                Jira4R::V2::ArrayOf_tns1_RemoteField,
         | 
| 524 | 
            +
                ::SOAP::SOAPArray,
         | 
| 525 | 
            +
                ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
         | 
| 526 | 
            +
                { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteField") }
         | 
| 527 | 
            +
              )
         | 
| 528 | 
            +
             | 
| 529 | 
            +
              EncodedRegistry.set(
         | 
| 530 | 
            +
                Jira4R::V2::ArrayOf_tns1_RemoteFilter,
         | 
| 531 | 
            +
                ::SOAP::SOAPArray,
         | 
| 532 | 
            +
                ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
         | 
| 533 | 
            +
                { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteFilter") }
         | 
| 534 | 
            +
              )
         | 
| 535 | 
            +
             | 
| 536 | 
            +
              EncodedRegistry.set(
         | 
| 537 | 
            +
                Jira4R::V2::ArrayOf_tns1_RemoteComment,
         | 
| 538 | 
            +
                ::SOAP::SOAPArray,
         | 
| 539 | 
            +
                ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
         | 
| 540 | 
            +
                { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteComment") }
         | 
| 541 | 
            +
              )
         | 
| 542 | 
            +
             | 
| 543 | 
            +
              EncodedRegistry.set(
         | 
| 544 | 
            +
                Jira4R::V2::ArrayOf_xsd_base64Binary,
         | 
| 545 | 
            +
                ::SOAP::SOAPArray,
         | 
| 546 | 
            +
                ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
         | 
| 547 | 
            +
                { :type => XSD::QName.new("http://www.w3.org/2001/XMLSchema", "byte[]") }
         | 
| 548 | 
            +
              )
         | 
| 549 | 
            +
             | 
| 550 | 
            +
              EncodedRegistry.set(
         | 
| 551 | 
            +
                Jira4R::V2::ArrayOf_tns1_RemoteAttachment,
         | 
| 552 | 
            +
                ::SOAP::SOAPArray,
         | 
| 553 | 
            +
                ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
         | 
| 554 | 
            +
                { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteAttachment") }
         | 
| 555 | 
            +
              )
         | 
| 556 | 
            +
             | 
| 557 | 
            +
              EncodedRegistry.set(
         | 
| 558 | 
            +
                Jira4R::V2::ArrayOf_tns1_RemoteWorklog,
         | 
| 559 | 
            +
                ::SOAP::SOAPArray,
         | 
| 560 | 
            +
                ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
         | 
| 561 | 
            +
                { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteWorklog") }
         | 
| 562 | 
            +
              )
         | 
| 563 | 
            +
             | 
| 564 | 
            +
              EncodedRegistry.set(
         | 
| 565 | 
            +
                Jira4R::V2::ArrayOf_tns1_RemotePermissionScheme,
         | 
| 566 | 
            +
                ::SOAP::SOAPArray,
         | 
| 567 | 
            +
                ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
         | 
| 568 | 
            +
                { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemotePermissionScheme") }
         | 
| 569 | 
            +
              )
         | 
| 570 | 
            +
             | 
| 571 | 
            +
              EncodedRegistry.set(
         | 
| 572 | 
            +
                Jira4R::V2::ArrayOf_tns1_RemotePermission,
         | 
| 573 | 
            +
                ::SOAP::SOAPArray,
         | 
| 574 | 
            +
                ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
         | 
| 575 | 
            +
                { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemotePermission") }
         | 
| 576 | 
            +
              )
         | 
| 577 | 
            +
             | 
| 578 | 
            +
              EncodedRegistry.set(
         | 
| 579 | 
            +
                Jira4R::V2::ArrayOf_tns1_RemoteIssue,
         | 
| 580 | 
            +
                ::SOAP::SOAPArray,
         | 
| 581 | 
            +
                ::SOAP::Mapping::EncodedRegistry::TypedArrayFactory,
         | 
| 582 | 
            +
                { :type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteIssue") }
         | 
| 583 | 
            +
              )
         | 
| 584 | 
            +
             | 
| 585 | 
            +
              LiteralRegistry.register(
         | 
| 586 | 
            +
                :class => Jira4R::V2::RemoteComment,
         | 
| 587 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteComment"),
         | 
| 588 | 
            +
                :schema_element => [
         | 
| 589 | 
            +
                  ["author", ["SOAP::SOAPString", XSD::QName.new(nil, "author")]],
         | 
| 590 | 
            +
                  ["body", ["SOAP::SOAPString", XSD::QName.new(nil, "body")]],
         | 
| 591 | 
            +
                  ["created", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "created")]],
         | 
| 592 | 
            +
                  ["groupLevel", ["SOAP::SOAPString", XSD::QName.new(nil, "groupLevel")]],
         | 
| 593 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 594 | 
            +
                  ["roleLevel", ["SOAP::SOAPString", XSD::QName.new(nil, "roleLevel")]],
         | 
| 595 | 
            +
                  ["updateAuthor", ["SOAP::SOAPString", XSD::QName.new(nil, "updateAuthor")]],
         | 
| 596 | 
            +
                  ["updated", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "updated")]]
         | 
| 597 | 
            +
                ]
         | 
| 598 | 
            +
              )
         | 
| 599 | 
            +
             | 
| 600 | 
            +
              LiteralRegistry.register(
         | 
| 601 | 
            +
                :class => Jira4R::V2::RemoteEntity,
         | 
| 602 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteEntity"),
         | 
| 603 | 
            +
                :schema_element => []
         | 
| 604 | 
            +
              )
         | 
| 605 | 
            +
             | 
| 606 | 
            +
              LiteralRegistry.register(
         | 
| 607 | 
            +
                :class => Jira4R::V2::RemoteUser,
         | 
| 608 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteUser"),
         | 
| 609 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteEntity"),
         | 
| 610 | 
            +
                :schema_element => [
         | 
| 611 | 
            +
                  ["email", ["SOAP::SOAPString", XSD::QName.new(nil, "email")]],
         | 
| 612 | 
            +
                  ["fullname", ["SOAP::SOAPString", XSD::QName.new(nil, "fullname")]],
         | 
| 613 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]]
         | 
| 614 | 
            +
                ]
         | 
| 615 | 
            +
              )
         | 
| 616 | 
            +
             | 
| 617 | 
            +
              LiteralRegistry.register(
         | 
| 618 | 
            +
                :class => Jira4R::V2::RemoteGroup,
         | 
| 619 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteGroup"),
         | 
| 620 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteEntity"),
         | 
| 621 | 
            +
                :schema_element => [
         | 
| 622 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
         | 
| 623 | 
            +
                  ["users", ["Jira4R::V2::ArrayOf_tns1_RemoteUser", XSD::QName.new(nil, "users")]]
         | 
| 624 | 
            +
                ]
         | 
| 625 | 
            +
              )
         | 
| 626 | 
            +
             | 
| 627 | 
            +
              LiteralRegistry.register(
         | 
| 628 | 
            +
                :class => Jira4R::V2::RemoteServerInfo,
         | 
| 629 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteServerInfo"),
         | 
| 630 | 
            +
                :schema_element => [
         | 
| 631 | 
            +
                  ["baseUrl", ["SOAP::SOAPString", XSD::QName.new(nil, "baseUrl")]],
         | 
| 632 | 
            +
                  ["buildDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "buildDate")]],
         | 
| 633 | 
            +
                  ["buildNumber", ["SOAP::SOAPString", XSD::QName.new(nil, "buildNumber")]],
         | 
| 634 | 
            +
                  ["edition", ["SOAP::SOAPString", XSD::QName.new(nil, "edition")]],
         | 
| 635 | 
            +
                  ["version", ["SOAP::SOAPString", XSD::QName.new(nil, "version")]]
         | 
| 636 | 
            +
                ]
         | 
| 637 | 
            +
              )
         | 
| 638 | 
            +
             | 
| 639 | 
            +
              LiteralRegistry.register(
         | 
| 640 | 
            +
                :class => Jira4R::V2::RemoteVersion,
         | 
| 641 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteVersion"),
         | 
| 642 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractNamedRemoteEntity"),
         | 
| 643 | 
            +
                :schema_element => [
         | 
| 644 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 645 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
         | 
| 646 | 
            +
                  ["archived", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "archived")]],
         | 
| 647 | 
            +
                  ["releaseDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "releaseDate")]],
         | 
| 648 | 
            +
                  ["released", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "released")]],
         | 
| 649 | 
            +
                  ["sequence", ["SOAP::SOAPLong", XSD::QName.new(nil, "sequence")]]
         | 
| 650 | 
            +
                ]
         | 
| 651 | 
            +
              )
         | 
| 652 | 
            +
             | 
| 653 | 
            +
              LiteralRegistry.register(
         | 
| 654 | 
            +
                :class => Jira4R::V2::RemoteComponent,
         | 
| 655 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteComponent"),
         | 
| 656 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractNamedRemoteEntity"),
         | 
| 657 | 
            +
                :schema_element => [
         | 
| 658 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 659 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]]
         | 
| 660 | 
            +
                ]
         | 
| 661 | 
            +
              )
         | 
| 662 | 
            +
             | 
| 663 | 
            +
              LiteralRegistry.register(
         | 
| 664 | 
            +
                :class => Jira4R::V2::RemoteCustomFieldValue,
         | 
| 665 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteCustomFieldValue"),
         | 
| 666 | 
            +
                :schema_element => [
         | 
| 667 | 
            +
                  ["customfieldId", ["SOAP::SOAPString", XSD::QName.new(nil, "customfieldId")]],
         | 
| 668 | 
            +
                  ["key", ["SOAP::SOAPString", XSD::QName.new(nil, "key")]],
         | 
| 669 | 
            +
                  ["values", ["Jira4R::V2::ArrayOf_xsd_string", XSD::QName.new(nil, "values")]]
         | 
| 670 | 
            +
                ]
         | 
| 671 | 
            +
              )
         | 
| 672 | 
            +
             | 
| 673 | 
            +
              LiteralRegistry.register(
         | 
| 674 | 
            +
                :class => Jira4R::V2::RemoteIssue,
         | 
| 675 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteIssue"),
         | 
| 676 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractRemoteEntity"),
         | 
| 677 | 
            +
                :schema_element => [
         | 
| 678 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 679 | 
            +
                  ["affectsVersions", ["Jira4R::V2::ArrayOf_tns1_RemoteVersion", XSD::QName.new(nil, "affectsVersions")]],
         | 
| 680 | 
            +
                  ["assignee", ["SOAP::SOAPString", XSD::QName.new(nil, "assignee")]],
         | 
| 681 | 
            +
                  ["attachmentNames", ["Jira4R::V2::ArrayOf_xsd_string", XSD::QName.new(nil, "attachmentNames")]],
         | 
| 682 | 
            +
                  ["components", ["Jira4R::V2::ArrayOf_tns1_RemoteComponent", XSD::QName.new(nil, "components")]],
         | 
| 683 | 
            +
                  ["created", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "created")]],
         | 
| 684 | 
            +
                  ["customFieldValues", ["Jira4R::V2::ArrayOf_tns1_RemoteCustomFieldValue", XSD::QName.new(nil, "customFieldValues")]],
         | 
| 685 | 
            +
                  ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
         | 
| 686 | 
            +
                  ["duedate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "duedate")]],
         | 
| 687 | 
            +
                  ["environment", ["SOAP::SOAPString", XSD::QName.new(nil, "environment")]],
         | 
| 688 | 
            +
                  ["fixVersions", ["Jira4R::V2::ArrayOf_tns1_RemoteVersion", XSD::QName.new(nil, "fixVersions")]],
         | 
| 689 | 
            +
                  ["key", ["SOAP::SOAPString", XSD::QName.new(nil, "key")]],
         | 
| 690 | 
            +
                  ["priority", ["SOAP::SOAPString", XSD::QName.new(nil, "priority")]],
         | 
| 691 | 
            +
                  ["project", ["SOAP::SOAPString", XSD::QName.new(nil, "project")]],
         | 
| 692 | 
            +
                  ["reporter", ["SOAP::SOAPString", XSD::QName.new(nil, "reporter")]],
         | 
| 693 | 
            +
                  ["resolution", ["SOAP::SOAPString", XSD::QName.new(nil, "resolution")]],
         | 
| 694 | 
            +
                  ["status", ["SOAP::SOAPString", XSD::QName.new(nil, "status")]],
         | 
| 695 | 
            +
                  ["summary", ["SOAP::SOAPString", XSD::QName.new(nil, "summary")]],
         | 
| 696 | 
            +
                  ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]],
         | 
| 697 | 
            +
                  ["updated", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "updated")]],
         | 
| 698 | 
            +
                  ["votes", ["SOAP::SOAPLong", XSD::QName.new(nil, "votes")]]
         | 
| 699 | 
            +
                ]
         | 
| 700 | 
            +
              )
         | 
| 701 | 
            +
             | 
| 702 | 
            +
              LiteralRegistry.register(
         | 
| 703 | 
            +
                :class => Jira4R::V2::RemoteNamedObject,
         | 
| 704 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteNamedObject"),
         | 
| 705 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractNamedRemoteEntity"),
         | 
| 706 | 
            +
                :schema_element => [
         | 
| 707 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 708 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]]
         | 
| 709 | 
            +
                ]
         | 
| 710 | 
            +
              )
         | 
| 711 | 
            +
             | 
| 712 | 
            +
              LiteralRegistry.register(
         | 
| 713 | 
            +
                :class => Jira4R::V2::RemoteScheme,
         | 
| 714 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteScheme"),
         | 
| 715 | 
            +
                :schema_element => [
         | 
| 716 | 
            +
                  ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
         | 
| 717 | 
            +
                  ["id", ["SOAP::SOAPLong", XSD::QName.new(nil, "id")]],
         | 
| 718 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
         | 
| 719 | 
            +
                  ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]]
         | 
| 720 | 
            +
                ]
         | 
| 721 | 
            +
              )
         | 
| 722 | 
            +
             | 
| 723 | 
            +
              LiteralRegistry.register(
         | 
| 724 | 
            +
                :class => Jira4R::V2::RemotePermission,
         | 
| 725 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemotePermission"),
         | 
| 726 | 
            +
                :schema_element => [
         | 
| 727 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
         | 
| 728 | 
            +
                  ["permission", ["SOAP::SOAPLong", XSD::QName.new(nil, "permission")]]
         | 
| 729 | 
            +
                ]
         | 
| 730 | 
            +
              )
         | 
| 731 | 
            +
             | 
| 732 | 
            +
              LiteralRegistry.register(
         | 
| 733 | 
            +
                :class => Jira4R::V2::RemotePermissionMapping,
         | 
| 734 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemotePermissionMapping"),
         | 
| 735 | 
            +
                :schema_element => [
         | 
| 736 | 
            +
                  ["permission", ["Jira4R::V2::RemotePermission", XSD::QName.new(nil, "permission")]],
         | 
| 737 | 
            +
                  ["remoteEntities", ["Jira4R::V2::ArrayOf_tns1_RemoteEntity", XSD::QName.new(nil, "remoteEntities")]]
         | 
| 738 | 
            +
                ]
         | 
| 739 | 
            +
              )
         | 
| 740 | 
            +
             | 
| 741 | 
            +
              LiteralRegistry.register(
         | 
| 742 | 
            +
                :class => Jira4R::V2::RemotePermissionScheme,
         | 
| 743 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemotePermissionScheme"),
         | 
| 744 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteScheme"),
         | 
| 745 | 
            +
                :schema_element => [
         | 
| 746 | 
            +
                  ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
         | 
| 747 | 
            +
                  ["id", ["SOAP::SOAPLong", XSD::QName.new(nil, "id")]],
         | 
| 748 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
         | 
| 749 | 
            +
                  ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]],
         | 
| 750 | 
            +
                  ["permissionMappings", ["Jira4R::V2::ArrayOf_tns1_RemotePermissionMapping", XSD::QName.new(nil, "permissionMappings")]]
         | 
| 751 | 
            +
                ]
         | 
| 752 | 
            +
              )
         | 
| 753 | 
            +
             | 
| 754 | 
            +
              LiteralRegistry.register(
         | 
| 755 | 
            +
                :class => Jira4R::V2::RemoteProject,
         | 
| 756 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteProject"),
         | 
| 757 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractNamedRemoteEntity"),
         | 
| 758 | 
            +
                :schema_element => [
         | 
| 759 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 760 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
         | 
| 761 | 
            +
                  ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
         | 
| 762 | 
            +
                  ["issueSecurityScheme", ["Jira4R::V2::RemoteScheme", XSD::QName.new(nil, "issueSecurityScheme")]],
         | 
| 763 | 
            +
                  ["key", ["SOAP::SOAPString", XSD::QName.new(nil, "key")]],
         | 
| 764 | 
            +
                  ["lead", ["SOAP::SOAPString", XSD::QName.new(nil, "lead")]],
         | 
| 765 | 
            +
                  ["notificationScheme", ["Jira4R::V2::RemoteScheme", XSD::QName.new(nil, "notificationScheme")]],
         | 
| 766 | 
            +
                  ["permissionScheme", ["Jira4R::V2::RemotePermissionScheme", XSD::QName.new(nil, "permissionScheme")]],
         | 
| 767 | 
            +
                  ["projectUrl", ["SOAP::SOAPString", XSD::QName.new(nil, "projectUrl")]],
         | 
| 768 | 
            +
                  ["url", ["SOAP::SOAPString", XSD::QName.new(nil, "url")]]
         | 
| 769 | 
            +
                ]
         | 
| 770 | 
            +
              )
         | 
| 771 | 
            +
             | 
| 772 | 
            +
              LiteralRegistry.register(
         | 
| 773 | 
            +
                :class => Jira4R::V2::RemoteFieldValue,
         | 
| 774 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteFieldValue"),
         | 
| 775 | 
            +
                :schema_element => [
         | 
| 776 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 777 | 
            +
                  ["values", ["Jira4R::V2::ArrayOf_xsd_string", XSD::QName.new(nil, "values")]]
         | 
| 778 | 
            +
                ]
         | 
| 779 | 
            +
              )
         | 
| 780 | 
            +
             | 
| 781 | 
            +
              LiteralRegistry.register(
         | 
| 782 | 
            +
                :class => Jira4R::V2::RemoteConfiguration,
         | 
| 783 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteConfiguration"),
         | 
| 784 | 
            +
                :schema_element => [
         | 
| 785 | 
            +
                  ["allowAttachments", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowAttachments")]],
         | 
| 786 | 
            +
                  ["allowExternalUserManagment", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowExternalUserManagment")]],
         | 
| 787 | 
            +
                  ["allowIssueLinking", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowIssueLinking")]],
         | 
| 788 | 
            +
                  ["allowSubTasks", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowSubTasks")]],
         | 
| 789 | 
            +
                  ["allowTimeTracking", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowTimeTracking")]],
         | 
| 790 | 
            +
                  ["allowUnassignedIssues", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowUnassignedIssues")]],
         | 
| 791 | 
            +
                  ["allowVoting", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowVoting")]],
         | 
| 792 | 
            +
                  ["allowWatching", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "allowWatching")]],
         | 
| 793 | 
            +
                  ["timeTrackingDaysPerWeek", ["SOAP::SOAPInt", XSD::QName.new(nil, "timeTrackingDaysPerWeek")]],
         | 
| 794 | 
            +
                  ["timeTrackingHoursPerDay", ["SOAP::SOAPInt", XSD::QName.new(nil, "timeTrackingHoursPerDay")]]
         | 
| 795 | 
            +
                ]
         | 
| 796 | 
            +
              )
         | 
| 797 | 
            +
             | 
| 798 | 
            +
              LiteralRegistry.register(
         | 
| 799 | 
            +
                :class => Jira4R::V2::RemotePriority,
         | 
| 800 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemotePriority"),
         | 
| 801 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractRemoteConstant"),
         | 
| 802 | 
            +
                :schema_element => [
         | 
| 803 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 804 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
         | 
| 805 | 
            +
                  ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
         | 
| 806 | 
            +
                  ["icon", ["SOAP::SOAPString", XSD::QName.new(nil, "icon")]],
         | 
| 807 | 
            +
                  ["color", ["SOAP::SOAPString", XSD::QName.new(nil, "color")]]
         | 
| 808 | 
            +
                ]
         | 
| 809 | 
            +
              )
         | 
| 810 | 
            +
             | 
| 811 | 
            +
              LiteralRegistry.register(
         | 
| 812 | 
            +
                :class => Jira4R::V2::RemoteResolution,
         | 
| 813 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteResolution"),
         | 
| 814 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractRemoteConstant"),
         | 
| 815 | 
            +
                :schema_element => [
         | 
| 816 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 817 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
         | 
| 818 | 
            +
                  ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
         | 
| 819 | 
            +
                  ["icon", ["SOAP::SOAPString", XSD::QName.new(nil, "icon")]]
         | 
| 820 | 
            +
                ]
         | 
| 821 | 
            +
              )
         | 
| 822 | 
            +
             | 
| 823 | 
            +
              LiteralRegistry.register(
         | 
| 824 | 
            +
                :class => Jira4R::V2::RemoteIssueType,
         | 
| 825 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteIssueType"),
         | 
| 826 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractRemoteConstant"),
         | 
| 827 | 
            +
                :schema_element => [
         | 
| 828 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 829 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
         | 
| 830 | 
            +
                  ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
         | 
| 831 | 
            +
                  ["icon", ["SOAP::SOAPString", XSD::QName.new(nil, "icon")]],
         | 
| 832 | 
            +
                  ["subTask", ["SOAP::SOAPBoolean", XSD::QName.new(nil, "subTask")]]
         | 
| 833 | 
            +
                ]
         | 
| 834 | 
            +
              )
         | 
| 835 | 
            +
             | 
| 836 | 
            +
              LiteralRegistry.register(
         | 
| 837 | 
            +
                :class => Jira4R::V2::RemoteStatus,
         | 
| 838 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteStatus"),
         | 
| 839 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractRemoteConstant"),
         | 
| 840 | 
            +
                :schema_element => [
         | 
| 841 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 842 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
         | 
| 843 | 
            +
                  ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
         | 
| 844 | 
            +
                  ["icon", ["SOAP::SOAPString", XSD::QName.new(nil, "icon")]]
         | 
| 845 | 
            +
                ]
         | 
| 846 | 
            +
              )
         | 
| 847 | 
            +
             | 
| 848 | 
            +
              LiteralRegistry.register(
         | 
| 849 | 
            +
                :class => Jira4R::V2::RemoteProjectRole,
         | 
| 850 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteProjectRole"),
         | 
| 851 | 
            +
                :schema_element => [
         | 
| 852 | 
            +
                  ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
         | 
| 853 | 
            +
                  ["id", ["SOAP::SOAPLong", XSD::QName.new(nil, "id")]],
         | 
| 854 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]]
         | 
| 855 | 
            +
                ]
         | 
| 856 | 
            +
              )
         | 
| 857 | 
            +
             | 
| 858 | 
            +
              LiteralRegistry.register(
         | 
| 859 | 
            +
                :class => Jira4R::V2::RemoteRoleActor,
         | 
| 860 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteRoleActor"),
         | 
| 861 | 
            +
                :schema_element => [
         | 
| 862 | 
            +
                  ["descriptor", ["SOAP::SOAPString", XSD::QName.new(nil, "descriptor")]],
         | 
| 863 | 
            +
                  ["parameter", ["SOAP::SOAPString", XSD::QName.new(nil, "parameter")]],
         | 
| 864 | 
            +
                  ["projectRole", ["Jira4R::V2::RemoteProjectRole", XSD::QName.new(nil, "projectRole")]],
         | 
| 865 | 
            +
                  ["type", ["SOAP::SOAPString", XSD::QName.new(nil, "type")]],
         | 
| 866 | 
            +
                  ["users", ["Jira4R::V2::ArrayOf_tns1_RemoteUser", XSD::QName.new(nil, "users")]]
         | 
| 867 | 
            +
                ]
         | 
| 868 | 
            +
              )
         | 
| 869 | 
            +
             | 
| 870 | 
            +
              LiteralRegistry.register(
         | 
| 871 | 
            +
                :class => Jira4R::V2::RemoteRoleActors,
         | 
| 872 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteRoleActors"),
         | 
| 873 | 
            +
                :schema_element => [
         | 
| 874 | 
            +
                  ["projectRole", ["Jira4R::V2::RemoteProjectRole", XSD::QName.new(nil, "projectRole")]],
         | 
| 875 | 
            +
                  ["roleActors", ["Jira4R::V2::ArrayOf_tns1_RemoteRoleActor", XSD::QName.new(nil, "roleActors")]],
         | 
| 876 | 
            +
                  ["users", ["Jira4R::V2::ArrayOf_tns1_RemoteUser", XSD::QName.new(nil, "users")]]
         | 
| 877 | 
            +
                ]
         | 
| 878 | 
            +
              )
         | 
| 879 | 
            +
             | 
| 880 | 
            +
              LiteralRegistry.register(
         | 
| 881 | 
            +
                :class => Jira4R::V2::RemoteProjectRoleActors,
         | 
| 882 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteProjectRoleActors"),
         | 
| 883 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteRoleActors"),
         | 
| 884 | 
            +
                :schema_element => [
         | 
| 885 | 
            +
                  ["projectRole", ["Jira4R::V2::RemoteProjectRole", XSD::QName.new(nil, "projectRole")]],
         | 
| 886 | 
            +
                  ["roleActors", ["Jira4R::V2::ArrayOf_tns1_RemoteRoleActor", XSD::QName.new(nil, "roleActors")]],
         | 
| 887 | 
            +
                  ["users", ["Jira4R::V2::ArrayOf_tns1_RemoteUser", XSD::QName.new(nil, "users")]],
         | 
| 888 | 
            +
                  ["project", ["Jira4R::V2::RemoteProject", XSD::QName.new(nil, "project")]]
         | 
| 889 | 
            +
                ]
         | 
| 890 | 
            +
              )
         | 
| 891 | 
            +
             | 
| 892 | 
            +
              LiteralRegistry.register(
         | 
| 893 | 
            +
                :class => Jira4R::V2::RemoteField,
         | 
| 894 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteField"),
         | 
| 895 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractNamedRemoteEntity"),
         | 
| 896 | 
            +
                :schema_element => [
         | 
| 897 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 898 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]]
         | 
| 899 | 
            +
                ]
         | 
| 900 | 
            +
              )
         | 
| 901 | 
            +
             | 
| 902 | 
            +
              LiteralRegistry.register(
         | 
| 903 | 
            +
                :class => Jira4R::V2::RemoteFilter,
         | 
| 904 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteFilter"),
         | 
| 905 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractNamedRemoteEntity"),
         | 
| 906 | 
            +
                :schema_element => [
         | 
| 907 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 908 | 
            +
                  ["name", ["SOAP::SOAPString", XSD::QName.new(nil, "name")]],
         | 
| 909 | 
            +
                  ["author", ["SOAP::SOAPString", XSD::QName.new(nil, "author")]],
         | 
| 910 | 
            +
                  ["description", ["SOAP::SOAPString", XSD::QName.new(nil, "description")]],
         | 
| 911 | 
            +
                  ["project", ["SOAP::SOAPString", XSD::QName.new(nil, "project")]],
         | 
| 912 | 
            +
                  ["xml", ["SOAP::SOAPString", XSD::QName.new(nil, "xml")]]
         | 
| 913 | 
            +
                ]
         | 
| 914 | 
            +
              )
         | 
| 915 | 
            +
             | 
| 916 | 
            +
              LiteralRegistry.register(
         | 
| 917 | 
            +
                :class => Jira4R::V2::RemoteAttachment,
         | 
| 918 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteAttachment"),
         | 
| 919 | 
            +
                :schema_basetype => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "AbstractRemoteEntity"),
         | 
| 920 | 
            +
                :schema_element => [
         | 
| 921 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 922 | 
            +
                  ["author", ["SOAP::SOAPString", XSD::QName.new(nil, "author")]],
         | 
| 923 | 
            +
                  ["created", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "created")]],
         | 
| 924 | 
            +
                  ["filename", ["SOAP::SOAPString", XSD::QName.new(nil, "filename")]],
         | 
| 925 | 
            +
                  ["filesize", ["SOAP::SOAPLong", XSD::QName.new(nil, "filesize")]],
         | 
| 926 | 
            +
                  ["mimetype", ["SOAP::SOAPString", XSD::QName.new(nil, "mimetype")]]
         | 
| 927 | 
            +
                ]
         | 
| 928 | 
            +
              )
         | 
| 929 | 
            +
             | 
| 930 | 
            +
              LiteralRegistry.register(
         | 
| 931 | 
            +
                :class => Jira4R::V2::RemoteWorklog,
         | 
| 932 | 
            +
                :schema_type => XSD::QName.new(NsBeansSoapRpcJiraAtlassianCom, "RemoteWorklog"),
         | 
| 933 | 
            +
                :schema_element => [
         | 
| 934 | 
            +
                  ["author", ["SOAP::SOAPString", XSD::QName.new(nil, "author")]],
         | 
| 935 | 
            +
                  ["comment", ["SOAP::SOAPString", XSD::QName.new(nil, "comment")]],
         | 
| 936 | 
            +
                  ["created", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "created")]],
         | 
| 937 | 
            +
                  ["groupLevel", ["SOAP::SOAPString", XSD::QName.new(nil, "groupLevel")]],
         | 
| 938 | 
            +
                  ["id", ["SOAP::SOAPString", XSD::QName.new(nil, "id")]],
         | 
| 939 | 
            +
                  ["roleLevelId", ["SOAP::SOAPString", XSD::QName.new(nil, "roleLevelId")]],
         | 
| 940 | 
            +
                  ["startDate", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "startDate")]],
         | 
| 941 | 
            +
                  ["timeSpent", ["SOAP::SOAPString", XSD::QName.new(nil, "timeSpent")]],
         | 
| 942 | 
            +
                  ["timeSpentInSeconds", ["SOAP::SOAPLong", XSD::QName.new(nil, "timeSpentInSeconds")]],
         | 
| 943 | 
            +
                  ["updateAuthor", ["SOAP::SOAPString", XSD::QName.new(nil, "updateAuthor")]],
         | 
| 944 | 
            +
                  ["updated", ["SOAP::SOAPDateTime", XSD::QName.new(nil, "updated")]]
         | 
| 945 | 
            +
                ]
         | 
| 946 | 
            +
              )
         | 
| 947 | 
            +
             | 
| 948 | 
            +
              LiteralRegistry.register(
         | 
| 949 | 
            +
                :class => Jira4R::V2::RemoteException,
         | 
| 950 | 
            +
                :schema_type => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemoteException"),
         | 
| 951 | 
            +
                :schema_element => []
         | 
| 952 | 
            +
              )
         | 
| 953 | 
            +
             | 
| 954 | 
            +
              LiteralRegistry.register(
         | 
| 955 | 
            +
                :class => Jira4R::V2::RemoteAuthenticationException,
         | 
| 956 | 
            +
                :schema_type => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemoteAuthenticationException"),
         | 
| 957 | 
            +
                :schema_basetype => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemoteException"),
         | 
| 958 | 
            +
                :schema_element => []
         | 
| 959 | 
            +
              )
         | 
| 960 | 
            +
             | 
| 961 | 
            +
              LiteralRegistry.register(
         | 
| 962 | 
            +
                :class => Jira4R::V2::RemoteValidationException,
         | 
| 963 | 
            +
                :schema_type => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemoteValidationException"),
         | 
| 964 | 
            +
                :schema_basetype => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemoteException"),
         | 
| 965 | 
            +
                :schema_element => []
         | 
| 966 | 
            +
              )
         | 
| 967 | 
            +
             | 
| 968 | 
            +
              LiteralRegistry.register(
         | 
| 969 | 
            +
                :class => Jira4R::V2::RemotePermissionException,
         | 
| 970 | 
            +
                :schema_type => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemotePermissionException"),
         | 
| 971 | 
            +
                :schema_basetype => XSD::QName.new(NsExceptionRpcJiraAtlassianCom, "RemoteException"),
         | 
| 972 | 
            +
                :schema_element => []
         | 
| 973 | 
            +
              )
         | 
| 974 | 
            +
             | 
| 975 | 
            +
            end
         | 
| 976 | 
            +
             | 
| 977 | 
            +
            end; end
         |