enable 2-way binding between metadata and editor tabs
[ccsdk/cds.git] / cds-ui / designer-client / src / app / modules / feature-modules / resource-dictionary / model / metaData.model.ts
1 import { JsonObject, JsonProperty } from 'json2typescript';
2
3 /*
4 * ============LICENSE_START=======================================================
5 * ONAP : CDS
6 * ================================================================================
7 * Copyright (C) 2020 TechMahindra
8 *=================================================================================
9 * Licensed under the Apache License, Version 2.0 (the "License");
10 * you may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 *     http://www.apache.org/licenses/LICENSE-2.0
14 *
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
20 * ============LICENSE_END=========================================================
21 */
22 @JsonObject()
23 export class MetaData {
24     @JsonProperty('name')
25     public name: string;
26     public tags: string;
27     @JsonProperty('updated-by')
28     public updatedBy: string;
29     public property: Property;
30
31     constructor() {
32         this.name = '';
33         this.tags = '';
34         this.updatedBy = '';
35         this.property = new Property();
36     }
37 }
38
39 @JsonObject()
40 export class Property {
41     public description: string;
42     type: string;
43     required: boolean;
44     @JsonProperty('entry_schema')
45     // tslint:disable-next-line: variable-name
46     entry_schema: EntrySchema = new EntrySchema();
47
48     constructor() {
49         this.description = '';
50         this.type = '';
51         this.entry_schema = new EntrySchema();
52         this.required = false;
53     }
54
55 }
56 @JsonObject()
57 export class EntrySchema {
58     type: string;
59     constraints: [];
60     constructor() {
61         this.type = '';
62         this.constraints = [];
63     }
64 }