Skip to content

Commit

Permalink
add serialVersionUID
Browse files Browse the repository at this point in the history
Signed-off-by: Ceki Gulcu <ceki@qos.ch>
  • Loading branch information
ceki committed Jul 31, 2021
1 parent b3697be commit aaa8a89
Show file tree
Hide file tree
Showing 8 changed files with 37 additions and 2 deletions.
Expand Up @@ -2,4 +2,9 @@

public class ImplicitModel extends ComponentModel {

/**
*
*/
private static final long serialVersionUID = 5507123447813692833L;

}
Expand Up @@ -4,6 +4,10 @@

public class IncludeModel extends Model {

/**
*
*/
private static final long serialVersionUID = -7613821942841993495L;
String optional;
String file;
String url;
Expand Down
Expand Up @@ -2,6 +2,10 @@

public class NamedComponentModel extends ComponentModel implements INamedModel {

/**
*
*/
private static final long serialVersionUID = -6388316680413871442L;
String name;

public String getName() {
Expand Down
Expand Up @@ -2,6 +2,10 @@

public class ParamModel extends NamedModel {

/**
*
*/
private static final long serialVersionUID = -3697627721759508667L;
String value;

public String getValue() {
Expand Down
Expand Up @@ -3,7 +3,11 @@
public class PropertyModel extends NamedModel {


String value;
/**
*
*/
private static final long serialVersionUID = 1494176979175092052L;
String value;
String scopeStr;

String file;
Expand Down
@@ -1,6 +1,11 @@
package ch.qos.logback.core.model;

public class ShutdownHookModel extends ComponentModel {

/**
*
*/
private static final long serialVersionUID = 8886561840058239494L;

}

Expand Up @@ -4,4 +4,9 @@

public class FruitContextModel extends Model {

/**
*
*/
private static final long serialVersionUID = 548563161422738332L;

}
Expand Up @@ -2,7 +2,11 @@

public class FruitShellModel extends Model {

String name;
/**
*
*/
private static final long serialVersionUID = 1644187848970171077L;
String name;

public String getName() {
return name;
Expand Down

0 comments on commit aaa8a89

Please sign in to comment.