UNPKG

@accordproject/concerto-core

Version:

Core Implementation for the Concerto Modeling Language

56 lines (55 loc) 2.44 kB
declare const Identifiable: any; import type ModelManager = require('../modelmanager'); import type ClassDeclaration = require('../introspect/classdeclaration'); /** * A Relationship is a typed pointer to an instance. I.e the relationship * with namespace = 'org.example', type = 'Vehicle' and id = 'ABC' creates * a pointer that points at an instance of org.example.Vehicle with the id * ABC. * * Applications should retrieve instances from {@link Factory} * * @extends Identifiable * @see See {@link Identifiable} * @class * @memberof module:concerto-core */ declare class Relationship extends Identifiable { /** * Create an asset. Use the Factory to create instances. * <p> * <strong>Note: Only to be called by framework code. Applications should * retrieve instances from {@link Factory}</strong> * </p> * * @param {ModelManager} modelManager - The ModelManager for this instance * @param {ClassDeclaration} classDeclaration - The class declaration for this instance. * @param {string} ns - The namespace this instance. * @param {string} type - The type this instance. * @param {string} id - The identifier of this instance. * @param {string} timestamp - The timestamp of this instance * @private */ constructor(modelManager: ModelManager, classDeclaration: ClassDeclaration, ns: string, type: string, id: string, timestamp?: string); /** * Returns the string representation of this class * @return {String} the string representation of the class */ toString(): string; /** * Determine if this identifiable is a relationship. * @return {boolean} True if this identifiable is a relationship, * false if not. */ isRelationship(): boolean; /** * Constructs a Relationship instance from a URI representation (created using toURI). * @param {ModelManager} modelManager - the model manager to bind the relationship to * @param {String} uriAsString - the URI as a string, generated using Identifiable.toURI() * @param {String} [defaultNamespace] - default namespace to use for backwards compatibility * @param {String} [defaultType] - default type to use for backwards compatibility * @return {Relationship} the relationship */ static fromURI(modelManager: any, uriAsString: any, defaultNamespace?: any, defaultType?: any): Relationship; } export = Relationship;