Class Jira4R::V2::RemoteConfiguration
In: lib/jira4r/v2/jiraService.rb
Parent: Object

{beans.soap.rpc.jira.atlassian.com}RemoteConfiguration

  allowAttachments - SOAP::SOAPBoolean
  allowExternalUserManagment - SOAP::SOAPBoolean
  allowIssueLinking - SOAP::SOAPBoolean
  allowSubTasks - SOAP::SOAPBoolean
  allowTimeTracking - SOAP::SOAPBoolean
  allowUnassignedIssues - SOAP::SOAPBoolean
  allowVoting - SOAP::SOAPBoolean
  allowWatching - SOAP::SOAPBoolean
  timeTrackingDaysPerWeek - SOAP::SOAPInt
  timeTrackingHoursPerDay - SOAP::SOAPInt

Methods

new  

Attributes

allowAttachments  [RW] 
allowExternalUserManagment  [RW] 
allowIssueLinking  [RW] 
allowSubTasks  [RW] 
allowTimeTracking  [RW] 
allowUnassignedIssues  [RW] 
allowVoting  [RW] 
allowWatching  [RW] 
timeTrackingDaysPerWeek  [RW] 
timeTrackingHoursPerDay  [RW] 

Public Class methods

[Source]

     # File lib/jira4r/v2/jiraService.rb, line 561
561:   def initialize(allowAttachments = nil, allowExternalUserManagment = nil, allowIssueLinking = nil, allowSubTasks = nil, allowTimeTracking = nil, allowUnassignedIssues = nil, allowVoting = nil, allowWatching = nil, timeTrackingDaysPerWeek = nil, timeTrackingHoursPerDay = nil)
562:     @allowAttachments = allowAttachments
563:     @allowExternalUserManagment = allowExternalUserManagment
564:     @allowIssueLinking = allowIssueLinking
565:     @allowSubTasks = allowSubTasks
566:     @allowTimeTracking = allowTimeTracking
567:     @allowUnassignedIssues = allowUnassignedIssues
568:     @allowVoting = allowVoting
569:     @allowWatching = allowWatching
570:     @timeTrackingDaysPerWeek = timeTrackingDaysPerWeek
571:     @timeTrackingHoursPerDay = timeTrackingHoursPerDay
572:   end

[Validate]