Class: Jira4R::V2::RemoteProject

Inherits:
AbstractNamedRemoteEntity show all
Defined in:
lib/jira4r/v2/jiraService.rb

Overview

http://beans.soap.rpc.jira.atlassian.comRemoteProject

id - SOAP::SOAPString
name - SOAP::SOAPString
description - SOAP::SOAPString
issueSecurityScheme - Jira4R::V2::RemoteScheme
key - SOAP::SOAPString
lead - SOAP::SOAPString
notificationScheme - Jira4R::V2::RemoteScheme
permissionScheme - Jira4R::V2::RemotePermissionScheme
projectUrl - SOAP::SOAPString
url - SOAP::SOAPString

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(id = nil, name = nil, description = nil, issueSecurityScheme = nil, key = nil, lead = nil, notificationScheme = nil, permissionScheme = nil, projectUrl = nil, url = nil) ⇒ RemoteProject

Returns a new instance of RemoteProject.



193
194
195
196
197
198
199
200
201
202
203
204
# File 'lib/jira4r/v2/jiraService.rb', line 193

def initialize(id = nil, name = nil, description = nil, issueSecurityScheme = nil, key = nil, lead = nil, notificationScheme = nil, permissionScheme = nil, projectUrl = nil, url = nil)
  @id = id
  @name = name
  @description = description
  @issueSecurityScheme = issueSecurityScheme
  @key = key
  @lead = lead
  @notificationScheme = notificationScheme
  @permissionScheme = permissionScheme
  @projectUrl = projectUrl
  @url = url
end

Instance Attribute Details

#descriptionObject

Returns the value of attribute description.



184
185
186
# File 'lib/jira4r/v2/jiraService.rb', line 184

def description
  @description
end

#idObject

Returns the value of attribute id.



182
183
184
# File 'lib/jira4r/v2/jiraService.rb', line 182

def id
  @id
end

#issueSecuritySchemeObject

Returns the value of attribute issueSecurityScheme.



185
186
187
# File 'lib/jira4r/v2/jiraService.rb', line 185

def issueSecurityScheme
  @issueSecurityScheme
end

#keyObject

Returns the value of attribute key.



186
187
188
# File 'lib/jira4r/v2/jiraService.rb', line 186

def key
  @key
end

#leadObject

Returns the value of attribute lead.



187
188
189
# File 'lib/jira4r/v2/jiraService.rb', line 187

def lead
  @lead
end

#nameObject

Returns the value of attribute name.



183
184
185
# File 'lib/jira4r/v2/jiraService.rb', line 183

def name
  @name
end

#notificationSchemeObject

Returns the value of attribute notificationScheme.



188
189
190
# File 'lib/jira4r/v2/jiraService.rb', line 188

def notificationScheme
  @notificationScheme
end

#permissionSchemeObject

Returns the value of attribute permissionScheme.



189
190
191
# File 'lib/jira4r/v2/jiraService.rb', line 189

def permissionScheme
  @permissionScheme
end

#projectUrlObject

Returns the value of attribute projectUrl.



190
191
192
# File 'lib/jira4r/v2/jiraService.rb', line 190

def projectUrl
  @projectUrl
end

#urlObject

Returns the value of attribute url.



191
192
193
# File 'lib/jira4r/v2/jiraService.rb', line 191

def url
  @url
end