File

src/models/events/odm/domain-management-object-added-event.ts

Description

Serializable REDHAWK Domain Object Added Event

Extends

DomainManagementObjectRemovedEvent

Implements

ISerializable

Index

Properties
Methods

Methods

deserialize
deserialize(input: any)

Deserializes a JSON object into this class

Parameters :
Name Type Optional Description
input any
Returns : this

Properties

Public sourceIOR
sourceIOR: any
Type : any

Source IOR (unused)

import { ISerializable } from '../../serialization/index';

import { DomainManagementObjectRemovedEvent } from './domain-management-object-removed-event';

/**
 * Serializable REDHAWK Domain Object Added Event
 */
export class DomainManagementObjectAddedEvent
    extends DomainManagementObjectRemovedEvent
    implements ISerializable<DomainManagementObjectAddedEvent> {

    /** Source IOR (unused) */
    public sourceIOR: any;

    /** Deserializes a JSON object into this class */
    deserialize(input: any) {
        super.deserialize(input);
        this.sourceIOR = {};
        return this;
    }
}

results matching ""

    No results matching ""