Class: Jira4R::V2::RemoteProject

Inherits:
AbstractNamedRemoteEntity show all
Defined in:
lib/jira4r/v2/jira_service.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.



311
312
313
314
315
316
317
318
319
320
321
322
# File 'lib/jira4r/v2/jira_service.rb', line 311

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.



302
303
304
# File 'lib/jira4r/v2/jira_service.rb', line 302

def description
  @description
end

#idObject

Returns the value of attribute id.



300
301
302
# File 'lib/jira4r/v2/jira_service.rb', line 300

def id
  @id
end

#issueSecuritySchemeObject

Returns the value of attribute issueSecurityScheme.



303
304
305
# File 'lib/jira4r/v2/jira_service.rb', line 303

def issueSecurityScheme
  @issueSecurityScheme
end

#keyObject

Returns the value of attribute key.



304
305
306
# File 'lib/jira4r/v2/jira_service.rb', line 304

def key
  @key
end

#leadObject

Returns the value of attribute lead.



305
306
307
# File 'lib/jira4r/v2/jira_service.rb', line 305

def lead
  @lead
end

#nameObject

Returns the value of attribute name.



301
302
303
# File 'lib/jira4r/v2/jira_service.rb', line 301

def name
  @name
end

#notificationSchemeObject

Returns the value of attribute notificationScheme.



306
307
308
# File 'lib/jira4r/v2/jira_service.rb', line 306

def notificationScheme
  @notificationScheme
end

#permissionSchemeObject

Returns the value of attribute permissionScheme.



307
308
309
# File 'lib/jira4r/v2/jira_service.rb', line 307

def permissionScheme
  @permissionScheme
end

#projectUrlObject

Returns the value of attribute projectUrl.



308
309
310
# File 'lib/jira4r/v2/jira_service.rb', line 308

def projectUrl
  @projectUrl
end

#urlObject

Returns the value of attribute url.



309
310
311
# File 'lib/jira4r/v2/jira_service.rb', line 309

def url
  @url
end