View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  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,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.syncope.fit.core.reference;
20  
21  import java.util.ArrayList;
22  import java.util.List;
23  import org.apache.syncope.common.lib.report.ReportConf;
24  
25  public class SampleReportConf implements ReportConf {
26  
27      private static final long serialVersionUID = -882050095416116390L;
28  
29      private String stringValue;
30  
31      private int intValue;
32  
33      private long longValue;
34  
35      private float floatValue;
36  
37      private double doubleValue;
38  
39      private boolean booleanValue;
40  
41      private List<String> listValues = new ArrayList<>();
42  
43      public String getStringValue() {
44          return stringValue;
45      }
46  
47      public void setStringValue(final String stringValue) {
48          this.stringValue = stringValue;
49      }
50  
51      public int getIntValue() {
52          return intValue;
53      }
54  
55      public void setIntValue(final int intValue) {
56          this.intValue = intValue;
57      }
58  
59      public long getLongValue() {
60          return longValue;
61      }
62  
63      public void setLongValue(final long longValue) {
64          this.longValue = longValue;
65      }
66  
67      public float getFloatValue() {
68          return floatValue;
69      }
70  
71      public void setFloatValue(final float floatValue) {
72          this.floatValue = floatValue;
73      }
74  
75      public double getDoubleValue() {
76          return doubleValue;
77      }
78  
79      public void setDoubleValue(final double doubleValue) {
80          this.doubleValue = doubleValue;
81      }
82  
83      public boolean isBooleanValue() {
84          return booleanValue;
85      }
86  
87      public void setBooleanValue(final boolean booleanValue) {
88          this.booleanValue = booleanValue;
89      }
90  
91      public List<String> getListValues() {
92          return listValues;
93      }
94  
95      public void setListValues(final List<String> listValues) {
96          this.listValues = listValues;
97      }
98  }