Class: SensitiveTag
- Inherits:
- 
      Object
      
        - Object
- SensitiveTag
 
- Defined in:
- lib/AuthenticationSDK/logging/sensitive_logging.rb
Instance Attribute Summary collapse
- 
  
    
      #disableMask  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute disableMask. 
- 
  
    
      #pattern  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute pattern. 
- 
  
    
      #replacement  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute replacement. 
- 
  
    
      #tagName  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute tagName. 
Instance Method Summary collapse
- 
  
    
      #initialize(tagName, pattern, replacement, disableMask)  ⇒ SensitiveTag 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of SensitiveTag. 
Constructor Details
#initialize(tagName, pattern, replacement, disableMask) ⇒ SensitiveTag
Returns a new instance of SensitiveTag.
| 5 6 7 8 9 10 | # File 'lib/AuthenticationSDK/logging/sensitive_logging.rb', line 5 def initialize(tagName, pattern, replacement, disableMask) @tagName = tagName @pattern = pattern @replacement = replacement @disableMask = disableMask end | 
Instance Attribute Details
#disableMask ⇒ Object
Returns the value of attribute disableMask.
| 4 5 6 | # File 'lib/AuthenticationSDK/logging/sensitive_logging.rb', line 4 def disableMask @disableMask end | 
#pattern ⇒ Object
Returns the value of attribute pattern.
| 4 5 6 | # File 'lib/AuthenticationSDK/logging/sensitive_logging.rb', line 4 def pattern @pattern end | 
#replacement ⇒ Object
Returns the value of attribute replacement.
| 4 5 6 | # File 'lib/AuthenticationSDK/logging/sensitive_logging.rb', line 4 def replacement @replacement end | 
#tagName ⇒ Object
Returns the value of attribute tagName.
| 4 5 6 | # File 'lib/AuthenticationSDK/logging/sensitive_logging.rb', line 4 def tagName @tagName end |