forked from mecdcme/is2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
mbruno
authored and
mbruno
committed
Dec 3, 2019
1 parent
68dd18f
commit 853df2a
Showing
10 changed files
with
2,173 additions
and
2,173 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,61 +1,61 @@ | ||
/** | ||
* Copyright 2019 ISTAT | ||
* | ||
* Licensed under the EUPL, Version 1.1 or – as soon they will be approved by | ||
* the European Commission - subsequent versions of the EUPL (the "Licence"); | ||
* You may not use this work except in compliance with the Licence. You may | ||
* obtain a copy of the Licence at: | ||
* | ||
* http://ec.europa.eu/idabc/eupl5 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the Licence is distributed on an "AS IS" basis, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* Licence for the specific language governing permissions and limitations under | ||
* the Licence. | ||
* | ||
* @author Francesco Amato <framato @ istat.it> | ||
* @author Mauro Bruno <mbruno @ istat.it> | ||
* @author Paolo Francescangeli <pafrance @ istat.it> | ||
* @author Renzo Iannacone <iannacone @ istat.it> | ||
* @author Stefano Macone <macone @ istat.it> | ||
* @version 1.0 | ||
*/ | ||
package it.istat.is2.app.bean; | ||
|
||
import java.io.Serializable; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
import lombok.Data; | ||
|
||
@Data | ||
public class SessionBean implements Serializable { | ||
|
||
private static final long serialVersionUID = 1L; | ||
|
||
private Long id; | ||
private String name; | ||
private List<String> file; | ||
private List<String> ruleset; | ||
private Long dataProcessingId; | ||
private String dataProcessingName; | ||
private BusinessProcessParentBean businessProcess; | ||
private BusinessFunctionBean businessFunction; | ||
private Long rulesetType; | ||
private Long dataset; | ||
|
||
public SessionBean(Long id, String name) { | ||
this.id = id; | ||
this.name = name; | ||
this.file = new ArrayList<>(); | ||
this.ruleset = new ArrayList<>(); | ||
this.dataProcessingId = new Long(0); | ||
} | ||
|
||
public SessionBean() { | ||
//this.file = new ArrayList<>(); | ||
//this.ruleset = new ArrayList<>(); | ||
this.dataProcessingId = new Long(0); | ||
} | ||
} | ||
/** | ||
* Copyright 2019 ISTAT | ||
* | ||
* Licensed under the EUPL, Version 1.1 or – as soon they will be approved by | ||
* the European Commission - subsequent versions of the EUPL (the "Licence"); | ||
* You may not use this work except in compliance with the Licence. You may | ||
* obtain a copy of the Licence at: | ||
* | ||
* http://ec.europa.eu/idabc/eupl5 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the Licence is distributed on an "AS IS" basis, WITHOUT | ||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
* Licence for the specific language governing permissions and limitations under | ||
* the Licence. | ||
* | ||
* @author Francesco Amato <framato @ istat.it> | ||
* @author Mauro Bruno <mbruno @ istat.it> | ||
* @author Paolo Francescangeli <pafrance @ istat.it> | ||
* @author Renzo Iannacone <iannacone @ istat.it> | ||
* @author Stefano Macone <macone @ istat.it> | ||
* @version 1.0 | ||
*/ | ||
package it.istat.is2.app.bean; | ||
|
||
import java.io.Serializable; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
import lombok.Data; | ||
|
||
@Data | ||
public class SessionBean implements Serializable { | ||
|
||
private static final long serialVersionUID = 1L; | ||
|
||
private Long id; | ||
private String name; | ||
private List<String> file; | ||
private List<String> ruleset; | ||
private Long dataProcessingId; | ||
private String dataProcessingName; | ||
private BusinessProcessParentBean businessProcess; | ||
private BusinessFunctionBean businessFunction; | ||
private Long rulesetType; | ||
private Long dataset; | ||
|
||
public SessionBean(Long id, String name) { | ||
this.id = id; | ||
this.name = name; | ||
this.file = new ArrayList<>(); | ||
this.ruleset = new ArrayList<>(); | ||
this.dataProcessingId = Long.valueOf(0); | ||
} | ||
|
||
public SessionBean() { | ||
//this.file = new ArrayList<>(); | ||
//this.ruleset = new ArrayList<>(); | ||
this.dataProcessingId = Long.valueOf(0); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.