65153fc1fe1a0922bf386be7b2d93db195a85b1d
[portal/sdk.git] /
1 /*-
2  * ================================================================================
3  * ECOMP Portal SDK
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property
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  * ================================================================================
19  */
20 package org.openecomp.portalsdk.analytics.model.definition;
21
22 import org.openecomp.portalsdk.analytics.RaptorObject;
23
24 public class Marker extends RaptorObject {
25         String markerColor = "";
26         String addressColumn = "";
27         String dataColumn = "";
28         String address = "";
29         String data = "";
30         String color = "";
31         public String getAddress() {
32                 return address;
33         }
34
35         public void setAddress(String address) {
36                 this.address = address;
37         }
38
39         public String getColor() {
40                 return color;
41         }
42
43         public void setColor(String color) {
44                 this.color = color;
45         }
46
47         public String getData() {
48                 return data;
49         }
50
51         public void setData(String data) {
52                 this.data = data;
53         }
54
55         public Marker(String markerColor, String addressColumn, String dataColumn){
56                 this.setMarkerColor(markerColor);
57                 this.setAddressColumn(addressColumn);
58                 this.setDataColumn(dataColumn);         
59         }
60         
61         public String getAddressColumn() {
62                 return addressColumn;
63         }
64         public void setAddressColumn(String addressColumn) {
65                 this.addressColumn = addressColumn;
66         }
67         public String getDataColumn() {
68                 return dataColumn;
69         }
70         public void setDataColumn(String dataColumn) {
71                 this.dataColumn = dataColumn;
72         }
73         public String getMarkerColor() {
74                 return markerColor;
75         }
76         public void setMarkerColor(String markerColor) {
77                 this.markerColor = markerColor;
78         }
79 }