ECHOObject Class Reference
Inherits from | NSObject |
---|---|
Declared in | ECHOObject.h ECHOObject.m |
Overview
An ECHOObject is an abstract object in ECHO. Particular objects are implemented based on this class.
Properties
instanceId
The reference ID of the instance to which this object belongs. オブジェクトのインスタンスIDを取得する。
@property (nonatomic, readonly) NSString *instanceId
Discussion
The reference ID of the instance to which this object belongs. オブジェクトのインスタンスIDを取得する。
Declared In
ECHOObject.h
resourceType
The type of this object. オブジェクトのリソースタイプを取得する。
@property (nonatomic, readonly) NSString *resourceType
Discussion
The type of this object. オブジェクトのリソースタイプを取得する。
Declared In
ECHOObject.h
refid
The current reference ID of this object. オブジェクトの参照IDを取得する。
@property (nonatomic, readonly) NSString *refid
Discussion
The current reference ID of this object. オブジェクトの参照IDを取得する。
Declared In
ECHOObject.h
Accessors
– requestURLPath
Returns the request URL path.
- (NSString *)requestURLPath
Discussion
Returns the request URL path.
Declared In
ECHOObject.h
Other Methods
– initWithInstanceId:resourceType:refid:
Initializes a new ECHOObject based on an existing one on the remote server.
- (instancetype)initWithInstanceId:(NSString *)instanceId resourceType:(NSString *)resourceType refid:(NSString *)refid
Parameters
instanceId |
The reference ID of the instance to which this object belongs. |
---|---|
resourceType |
The type of this object. |
refid |
The reference ID of the existing one. |
Discussion
Initializes a new ECHOObject based on an existing one on the remote server.
Declared In
ECHOObject_Protected.h