Support of get_property in property assignment
[sdc.git] / catalog-ui / src / app / models / tosca-get-function-dto.ts
1 /*
2  * -
3  *  ============LICENSE_START=======================================================
4  *  Copyright (C) 2022 Nordix Foundation.
5  *  ================================================================================
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *       http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *
18  *  SPDX-License-Identifier: Apache-2.0
19  *  ============LICENSE_END=========================================================
20  */
21
22 import {ToscaGetFunctionType} from './tosca-get-function-type';
23 import {PropertySource} from './property-source';
24
25 export class ToscaGetFunctionDto {
26     propertyUniqueId: string;
27     propertyName: string;
28     propertySource: PropertySource;
29     sourceUniqueId: string;
30     sourceName: string;
31     functionType: ToscaGetFunctionType;
32     propertyPathFromSource: Array<string>;
33 }
34
35 export class ToscaGetFunctionDtoBuilder {
36     toscaGetFunctionDto: ToscaGetFunctionDto = new ToscaGetFunctionDto();
37
38     withPropertyUniqueId(propertyUniqueId: string): ToscaGetFunctionDtoBuilder {
39         this.toscaGetFunctionDto.propertyUniqueId = propertyUniqueId;
40         return this;
41     }
42
43     withPropertyName(propertyName: string): ToscaGetFunctionDtoBuilder {
44         this.toscaGetFunctionDto.propertyName = propertyName;
45         return this;
46     }
47
48     withPropertySource(propertySource: PropertySource): ToscaGetFunctionDtoBuilder {
49         this.toscaGetFunctionDto.propertySource = propertySource;
50         return this;
51     }
52
53     withSourceUniqueId(sourceUniqueId: string): ToscaGetFunctionDtoBuilder {
54         this.toscaGetFunctionDto.sourceUniqueId = sourceUniqueId;
55         return this;
56     }
57
58     withSourceName(sourceName: string): ToscaGetFunctionDtoBuilder {
59         this.toscaGetFunctionDto.sourceName = sourceName;
60         return this;
61     }
62
63     withFunctionType(functionType: ToscaGetFunctionType): ToscaGetFunctionDtoBuilder {
64         this.toscaGetFunctionDto.functionType = functionType;
65         return this;
66     }
67
68     withPropertyPathFromSource(propertyPathFromSource: Array<string>): ToscaGetFunctionDtoBuilder {
69         this.toscaGetFunctionDto.propertyPathFromSource = propertyPathFromSource;
70         return this;
71     }
72
73     build(): ToscaGetFunctionDto {
74         return this.toscaGetFunctionDto;
75     }
76 }