a17c38c7fb6b46a24180120b78ffcfbf226a78dd
[vid.git] / vid-automation / src / main / java / org / onap / sdc / ci / tests / datatypes / CanvasElement.java
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 package org.onap.sdc.ci.tests.datatypes;
22
23 import org.apache.commons.lang3.tuple.ImmutablePair;
24 import org.onap.sdc.ci.tests.datatypes.DataTestIdEnum.LeftPanelCanvasItems;
25
26 public final class CanvasElement {
27         private final String uniqueId;
28         private ImmutablePair<Integer, Integer> location;
29         private LeftPanelCanvasItems normativeElementType;
30         private String elementType;
31
32         CanvasElement(String name, ImmutablePair<Integer, Integer> location, LeftPanelCanvasItems canvasItem) {
33                 super();
34                 this.uniqueId = name;
35                 this.location = location;
36                 normativeElementType = canvasItem;
37         }
38
39         CanvasElement(String name, ImmutablePair<Integer, Integer> location, String canvasItem) {
40                 super();
41                 this.uniqueId = name;
42                 this.location = location;
43                 elementType = canvasItem;
44         }
45
46         public String getUniqueId() {
47                 return uniqueId;
48         }
49
50         public ImmutablePair<Integer, Integer> getLocation() {
51                 return location;
52         }
53
54         public void setLocation(ImmutablePair<Integer, Integer> location) {
55                 this.location = location;
56         }
57
58         public LeftPanelCanvasItems getNormativeElementType() {
59                 return normativeElementType;
60         }
61
62         public String getElementType() {
63                 return elementType;
64         }
65 }