Class: UU::OS::Security::SessionAppIdentityAttributes
- Inherits:
-
Object
- Object
- UU::OS::Security::SessionAppIdentityAttributes
- Defined in:
- uu_os_framework-0.29.16/lib/uu/os/security/session_app_identity_attributes.rb
Overview
Attributes of the application identity.
Instance Attribute Summary (collapse)
-
- (Object) app_code
Full code of the application.
-
- (Object) universe_id
Universe identifier of the application identity.
Instance Method Summary (collapse)
-
- (Object) to_s
Returns string representation of this instance.
Instance Attribute Details
- (Object) app_code
Full code of the application. The code is in the format VENDOR_CODE.APP_CODE.
12 13 14 |
# File 'uu_os_framework-0.29.16/lib/uu/os/security/session_app_identity_attributes.rb', line 12 def app_code @app_code end |
- (Object) universe_id
Universe identifier of the application identity.
9 10 11 |
# File 'uu_os_framework-0.29.16/lib/uu/os/security/session_app_identity_attributes.rb', line 9 def universe_id @universe_id end |
Instance Method Details
- (Object) to_s
Returns string representation of this instance.
15 16 17 |
# File 'uu_os_framework-0.29.16/lib/uu/os/security/session_app_identity_attributes.rb', line 15 def to_s return "Universe Id: #{@universe_id}, AppCode: #{@app_code}" end |