Inherits from CMISExtensionData : NSObject
Declared in CMISProperties.h

Properties

propertiesDictionary

@property (nonatomic, strong, readonly) NSDictionary *propertiesDictionary

propertyList

@property (nonatomic, strong, readonly) NSArray *propertyList

Instance Methods

addProperty:

- (void)addProperty:(CMISPropertyData *)propertyData

propertyForId:

Returns a property by id.

Since repositories are not obligated to add property ids to their query result properties, this method might not always work as expected with some repositories. Use {@link #getPropertyByQueryName(String)} instead.

- (CMISPropertyData *)propertyForId:(NSString *)id

Discussion

Returns a property by id.

Since repositories are not obligated to add property ids to their query result properties, this method might not always work as expected with some repositories. Use {@link #getPropertyByQueryName(String)} instead.

Declared In

CMISProperties.h

propertyForQueryName:

Returns a property by query name or alias.

- (CMISPropertyData *)propertyForQueryName:(NSString *)queryName

Discussion

Returns a property by query name or alias.

Declared In

CMISProperties.h

propertyMultiValueById:

Returns a property multi-value by id.

- (NSArray *)propertyMultiValueById:(NSString *)id

Discussion

Returns a property multi-value by id.

Declared In

CMISProperties.h

propertyMultiValueByQueryName:

Returns a property multi-value by query name or alias.

- (NSArray *)propertyMultiValueByQueryName:(NSString *)queryName

Discussion

Returns a property multi-value by query name or alias.

Declared In

CMISProperties.h

propertyValueForId:

Returns a property (single) value by id.

- (id)propertyValueForId:(NSString *)propertyId

Discussion

Returns a property (single) value by id.

Declared In

CMISProperties.h

propertyValueForQueryName:

Returns a property (single) value by query name or alias.

- (id)propertyValueForQueryName:(NSString *)queryName

Discussion

Returns a property (single) value by query name or alias.

Declared In

CMISProperties.h