[SDC-29] rebase continue work to align source
[sdc.git] / ui-ci-dev / src / main / java / org / openecomp / sdc / uici / tests / datatypes / CanvasElement.java
1 package org.openecomp.sdc.uici.tests.datatypes;
2
3 import org.apache.commons.lang3.tuple.ImmutablePair;
4
5 public final class CanvasElement {
6         private final String uniqueId;
7         private ImmutablePair<Integer, Integer> location;
8         private String elementName;
9
10         public String getElementName() {
11                 return elementName;
12         }
13
14         public CanvasElement(String uniqueId, String elementName, ImmutablePair<Integer, Integer> location) {
15                 super();
16                 this.uniqueId = uniqueId;
17                 this.location = location;
18                 this.elementName = elementName;
19         }
20
21         public String getUniqueId() {
22                 return uniqueId;
23         }
24
25         public ImmutablePair<Integer, Integer> getLocation() {
26                 return location;
27         }
28
29         public void setLocation(ImmutablePair<Integer, Integer> location) {
30                 this.location = location;
31         }
32
33 }