7004b43cbc49cc013cdb7ba37040a2e105b1ce81
[sdc.git] / catalog-ui / src / app / models / data-types.ts
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 /**
22  * Created by rcohen on 9/25/2016.
23  */
24 'use strict';
25 import {PropertyBEModel} from "./properties-inputs/property-be-model";
26 import {AttributeBEModel} from "./attributes-outputs/attribute-be-model";
27 import {Model} from "./model";
28
29 export class DataTypeModel {
30
31     //server data
32     name:string;
33     uniqueId:string;
34     derivedFromName:string;
35     derivedFrom:DataTypeModel;
36     creationTime:string;
37     modificationTime:string;
38     properties: Array<PropertyBEModel>;
39     attributes: Array<AttributeBEModel>;
40     model: Model;
41
42     constructor(dataType:DataTypeModel) {
43         if (dataType) {
44             this.uniqueId = dataType.uniqueId;
45             this.name = dataType.name;
46             this.derivedFromName = dataType.derivedFromName;
47             this.creationTime = dataType.creationTime;
48             this.modificationTime = dataType.modificationTime;
49             this.properties = dataType.properties;
50             this.attributes = dataType.attributes;
51             this.model = this.model;
52         }
53     }
54
55     public toJSON = ():any => {
56
57         return this;
58     };
59 }
60