AlfrescoNode Class Reference
Inherits from | NSObject |
Conforms to | NSCoding |
Declared in | AlfrescoNode.h |
Overview
The AlfrescoNode represents a node that’s stored in the Alfresco repository.
Author: Gavin Cornwell (Alfresco), Tijs Rademakers (Alfresco), Peter Schmidt (Alfresco)
Tasks
Other Methods
-
identifier
The unique identifier of the node.
property -
name
The name of the node.
property -
title
The title of the node.
property -
summary
The description of the node.
property -
type
The object type of the node i.e. cm:content.
property -
createdBy
The id of the user that created the node.
property -
createdAt
The date the node was created.
property -
modifiedBy
The id of the user that last modified the node.
property -
modifiedAt
The date the node was last modified.
property -
properties
A dictionary of AlfrescoProperty objects representing the properties stored on the node.
property -
aspects
The list of aspects the node has applied.
property -
isFolder
Specifies whether this node represents a folder.
property -
isDocument
Specifies whether this node represents a document.
property
Property and Aspect Getters.
-
– propertyValueWithName:
Returns the value of a property with the given name, nil will be returned if a property with the given name does not exist.
-
– hasAspectWithName:
Determines whether the node has an aspect with the given name applied.
Properties
aspects
The list of aspects the node has applied.
@property (nonatomic, strong, readonly) NSArray *aspects
Discussion
The list of aspects the node has applied.
Declared In
AlfrescoNode.h
createdAt
The date the node was created.
@property (nonatomic, strong, readonly) NSDate *createdAt
Discussion
The date the node was created.
Declared In
AlfrescoNode.h
createdBy
The id of the user that created the node.
@property (nonatomic, strong, readonly) NSString *createdBy
Discussion
The id of the user that created the node.
Declared In
AlfrescoNode.h
identifier
The unique identifier of the node.
@property (nonatomic, strong, readonly) NSString *identifier
Discussion
The unique identifier of the node.
Declared In
AlfrescoNode.h
isDocument
Specifies whether this node represents a document.
@property (nonatomic, assign, readonly) BOOL isDocument
Discussion
Specifies whether this node represents a document.
Declared In
AlfrescoNode.h
isFolder
Specifies whether this node represents a folder.
@property (nonatomic, assign, readonly) BOOL isFolder
Discussion
Specifies whether this node represents a folder.
Declared In
AlfrescoNode.h
modifiedAt
The date the node was last modified.
@property (nonatomic, strong, readonly) NSDate *modifiedAt
Discussion
The date the node was last modified.
Declared In
AlfrescoNode.h
modifiedBy
The id of the user that last modified the node.
@property (nonatomic, strong, readonly) NSString *modifiedBy
Discussion
The id of the user that last modified the node.
Declared In
AlfrescoNode.h
name
The name of the node.
@property (nonatomic, strong, readonly) NSString *name
Discussion
The name of the node.
Declared In
AlfrescoNode.h
properties
A dictionary of AlfrescoProperty objects representing the properties stored on the node.
@property (nonatomic, strong, readonly) NSDictionary *properties
Discussion
A dictionary of AlfrescoProperty objects representing the properties stored on the node.
Declared In
AlfrescoNode.h
summary
The description of the node.
@property (nonatomic, strong, readonly) NSString *summary
Discussion
The description of the node.
Declared In
AlfrescoNode.h
Instance Methods
hasAspectWithName:
Determines whether the node has an aspect with the given name applied.
- (BOOL)hasAspectWithName:(NSString *)aspectName
Parameters
- aspectName
The name of the aspect that will be searched for.
Discussion
Determines whether the node has an aspect with the given name applied.
Declared In
AlfrescoNode.h
propertyValueWithName:
Returns the value of a property with the given name, nil will be returned if a property with the given name does not exist.
- (id)propertyValueWithName:(NSString *)propertyName
Parameters
- propertyName
The name of the property for which the value will be retrieved.
Discussion
Returns the value of a property with the given name, nil will be returned if a property with the given name does not exist.
Declared In
AlfrescoNode.h