Interface IVersionable
Defines the basic identification of a repository-managed item: agency identifier, identifier, and item version.
Inherited Members
Namespace: Algenta.Colectica.Model
Assembly: Algenta.Colectica.Model.dll
Syntax
public interface IVersionable : IIdentifiable, IVisitable, IHasCustomFields
Properties
Attachments
Gets a collection of file URIs stored in the File Storage Service attached to this item.
Declaration
ObservableCollection<Attachment> Attachments { get; }
Property Value
Type | Description |
---|---|
ObservableCollection<Attachment> |
BasedOn
Gets a collection that describes previous items on which this item is based
Declaration
BasedOn BasedOn { get; set; }
Property Value
Type | Description |
---|---|
BasedOn |
ChildrenDereferenced
Gets or sets a value indicating whether the item's children have been dereferenced.
Declaration
bool ChildrenDereferenced { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
ChildTypesAccepted
Gets the child types that may be added to this item type.
Declaration
Collection<Guid> ChildTypesAccepted { get; }
Property Value
Type | Description |
---|---|
Collection<Guid> | The child types that may be added to this item type. |
CompositeId
Gets or sets the item's composite identifier, consisting of the agency identifier, identifier, and version.
Declaration
IdentifierTriple CompositeId { get; set; }
Property Value
Type | Description |
---|---|
IdentifierTriple | The item's composite identifier. |
IsDirty
Gets or sets a value indicating whether this instance has unsaved changes.
Declaration
bool IsDirty { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
IsPopulated
Gets or sets a value indicating whether this instance's information is populated.
Declaration
bool IsPopulated { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
IsPublished
Gets or sets a value indicating whether this instance is published.
Declaration
bool IsPublished { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
OtherMaterials
Gets a collection of other material fields defined for this item.
Declaration
ObservableCollection<OtherMaterial> OtherMaterials { get; }
Property Value
Type | Description |
---|---|
ObservableCollection<OtherMaterial> |
UserAttributes
Gets a collection of custom user defined key value pairs for this item.
Declaration
ObservableCollection<UserAttribute> UserAttributes { get; }
Property Value
Type | Description |
---|---|
ObservableCollection<UserAttribute> |
Version
Gets or sets the version of the item.
Declaration
long Version { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 | The version of the item. |
VersionDate
Gets or sets the
Declaration
DateTime VersionDate { get; set; }
Property Value
Type | Description |
---|---|
DateTime | The |
VersionRationale
Gets the log message given by the user who created this version of the item.
Declaration
MultilingualString VersionRationale { get; }
Property Value
Type | Description |
---|---|
MultilingualString |
VersionResponsibility
Gets or sets the name of the user who created this version of the item.
Declaration
string VersionResponsibility { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name of the user who created this version of the item. |
Methods
AddChild(IVersionable)
Adds the child.
Declaration
void AddChild(IVersionable child)
Parameters
Type | Name | Description |
---|---|---|
IVersionable | child | The child. |
GetChildren()
Gets a collection of this item's children.
Declaration
ChildItemCollection GetChildren()
Returns
Type | Description |
---|---|
ChildItemCollection |
RemoveChild(IdentifierTriple)
Removes the specified child.
Declaration
int RemoveChild(IdentifierTriple child)
Parameters
Type | Name | Description |
---|---|---|
IdentifierTriple | child | The child to be removed. |
Returns
Type | Description |
---|---|
System.Int32 | The number of children removed from the item. |
ReplaceChild(IdentifierTriple, IVersionable)
Replaces the child.
Declaration
int ReplaceChild(IdentifierTriple toReplace, IVersionable child)
Parameters
Type | Name | Description |
---|---|---|
IdentifierTriple | toReplace | The identifier of the child to replace. |
IVersionable | child | The new child. |
Returns
Type | Description |
---|---|
System.Int32 | The number of children replaced. |