Inherits from NSObject
Conforms to NSCoding
Declared in AlfrescoComment.h

Overview

The AlfrescoComment represents a comment that’s attached to a node in an Alfresco repository.

Author: Gavin Cornwell (Alfresco), Tijs Rademakers (Alfresco), Peter Schmidt (Alfresco)

Tasks

Properties.

  •   identifier

    Returns the unique identifier of the comment.

    property
  •   name

    Returns the name of this comment.

    property
  •   title

    Returns the title of this comment.

    property
  •   createdAt

    Returns the timestamp in the session’s locale when this comment was created.

    property
  •   modifiedAt

    Returns the timestamp in the session’s locale when this comment has been modified.

    property
  •   content

    Returns the content of the comment.

    property
  •   createdBy

    Returns the author of the comment as Person Object.

    property
  •   isEdited

    Indicates whether the comment has been edited since it was initially created.

    property
  •   canEdit

    Returns true if the current user can edit this comment.

    property
  •   canDelete

    Returns true if the current user can delete this comment.

    property

Properties

canDelete

Returns true if the current user can delete this comment.

@property (nonatomic, readonly) BOOL canDelete

Discussion

Returns true if the current user can delete this comment.

Declared In

AlfrescoComment.h

canEdit

Returns true if the current user can edit this comment.

@property (nonatomic, readonly) BOOL canEdit

Discussion

Returns true if the current user can edit this comment.

Declared In

AlfrescoComment.h

content

Returns the content of the comment.

@property (nonatomic, strong, readonly) NSString *content

Discussion

Returns the content of the comment.

Declared In

AlfrescoComment.h

createdAt

Returns the timestamp in the session’s locale when this comment was created.

@property (nonatomic, strong, readonly) NSDate *createdAt

Discussion

Returns the timestamp in the session’s locale when this comment was created.

Declared In

AlfrescoComment.h

createdBy

Returns the author of the comment as Person Object.

@property (nonatomic, strong, readonly) NSString *createdBy

Discussion

Returns the author of the comment as Person Object.

Declared In

AlfrescoComment.h

identifier

Returns the unique identifier of the comment.

@property (nonatomic, strong, readonly) NSString *identifier

Discussion

Returns the unique identifier of the comment.

Declared In

AlfrescoComment.h

isEdited

Indicates whether the comment has been edited since it was initially created.

@property (nonatomic, readonly) BOOL isEdited

Discussion

Indicates whether the comment has been edited since it was initially created.

Declared In

AlfrescoComment.h

modifiedAt

Returns the timestamp in the session’s locale when this comment has been modified.

@property (nonatomic, strong, readonly) NSDate *modifiedAt

Discussion

Returns the timestamp in the session’s locale when this comment has been modified.

Declared In

AlfrescoComment.h

name

Returns the name of this comment.

@property (nonatomic, strong, readonly) NSString *name

Discussion

Returns the name of this comment.

Declared In

AlfrescoComment.h

title

Returns the title of this comment.

@property (nonatomic, strong, readonly) NSString *title

Discussion

Returns the title of this comment.

Declared In

AlfrescoComment.h