Class: UU::OS::UseCase::UseCaseAttributes
- Inherits:
-
REST::DTO
- Object
- REST::DTO
- UU::OS::UseCase::UseCaseAttributes
- Defined in:
- uu_os-0.29.16/lib/uu/os/use_case/use_case_attributes.rb
Instance Attribute Summary (collapse)
-
- (Object) code
The code of the use case.
-
- (Object) creation_stamp
The creation stamp of the use case.
-
- (Object) creation_time
The creation time of the use case.
-
- (Object) description
The description of the use case.
-
- (Object) entity_type_uri
UESURI of the entity type of the use case.
-
- (Object) modification_stamp
The modification stamp of the use case.
-
- (Object) modification_time
The modification time of the use case.
-
- (Object) name
The name of the use case.
-
- (Object) uri
The normalized UESURI of the use case.
-
- (Object) use_case_realization_uri
The UESURI of a use case realization.
-
- (Object) use_case_type
The type of the use case.
-
- (Object) version
The version of the use case.
Instance Method Summary (collapse)
-
- (Object) revision
deprecated
Deprecated.
Use #version instead.
-
- (Object) revision=(val)
deprecated
Deprecated.
Use #version instead.
Methods inherited from REST::DTO
#initialize, #to_hash, #to_json
Constructor Details
This class inherits a constructor from UU::OS::REST::DTO
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class UU::OS::REST::DTO
Instance Attribute Details
- (Object) code
The code of the use case. Never nil.
16 17 18 |
# File 'uu_os-0.29.16/lib/uu/os/use_case/use_case_attributes.rb', line 16 def code @code end |
- (Object) creation_stamp
The creation stamp of the use case. Never nil.
31 32 33 |
# File 'uu_os-0.29.16/lib/uu/os/use_case/use_case_attributes.rb', line 31 def creation_stamp @creation_stamp end |
- (Object) creation_time
The creation time of the use case. Never nil.
28 29 30 |
# File 'uu_os-0.29.16/lib/uu/os/use_case/use_case_attributes.rb', line 28 def creation_time @creation_time end |
- (Object) description
The description of the use case. Never nil.
19 20 21 |
# File 'uu_os-0.29.16/lib/uu/os/use_case/use_case_attributes.rb', line 19 def description @description end |
- (Object) entity_type_uri
UESURI of the entity type of the use case. Never nil.
43 44 45 |
# File 'uu_os-0.29.16/lib/uu/os/use_case/use_case_attributes.rb', line 43 def entity_type_uri @entity_type_uri end |
- (Object) modification_stamp
The modification stamp of the use case. Never nil.
37 38 39 |
# File 'uu_os-0.29.16/lib/uu/os/use_case/use_case_attributes.rb', line 37 def modification_stamp @modification_stamp end |
- (Object) modification_time
The modification time of the use case. Never nil.
34 35 36 |
# File 'uu_os-0.29.16/lib/uu/os/use_case/use_case_attributes.rb', line 34 def modification_time @modification_time end |
- (Object) name
The name of the use case. Never nil.
13 14 15 |
# File 'uu_os-0.29.16/lib/uu/os/use_case/use_case_attributes.rb', line 13 def name @name end |
- (Object) uri
The normalized UESURI of the use case. Never nil.
10 11 12 |
# File 'uu_os-0.29.16/lib/uu/os/use_case/use_case_attributes.rb', line 10 def uri @uri end |
- (Object) use_case_realization_uri
The UESURI of a use case realization.
22 23 24 |
# File 'uu_os-0.29.16/lib/uu/os/use_case/use_case_attributes.rb', line 22 def use_case_realization_uri @use_case_realization_uri end |
- (Object) use_case_type
The type of the use case.
25 26 27 |
# File 'uu_os-0.29.16/lib/uu/os/use_case/use_case_attributes.rb', line 25 def use_case_type @use_case_type end |
- (Object) version
The version of the use case. Never nil.
40 41 42 |
# File 'uu_os-0.29.16/lib/uu/os/use_case/use_case_attributes.rb', line 40 def version @version end |
Instance Method Details
- (Object) revision
Use #version instead.
134 135 136 |
# File 'uu_os-0.29.16/lib/uu/os/use_case/use_case_attributes.rb', line 134 def revision attributes[:version] end |
- (Object) revision=(val)
Use #version instead.
139 140 141 |
# File 'uu_os-0.29.16/lib/uu/os/use_case/use_case_attributes.rb', line 139 def revision=(val) attributes[:version] = val end |