fixed a problem with eoscType
This commit is contained in:
parent
fe3a9f7b4e
commit
d46f52aa5f
|
@ -54,6 +54,9 @@ public abstract class DatasourceIgnoredProperties {
|
|||
@JsonIgnore
|
||||
protected String certificates;
|
||||
|
||||
@JsonIgnore
|
||||
protected String eoscType;
|
||||
|
||||
public String getOd_contenttypes() {
|
||||
return od_contenttypes;
|
||||
}
|
||||
|
@ -182,4 +185,12 @@ public abstract class DatasourceIgnoredProperties {
|
|||
this.certificates = certificates;
|
||||
}
|
||||
|
||||
public String getEoscType() {
|
||||
return eoscType;
|
||||
}
|
||||
|
||||
public void setEoscType(final String eoscType) {
|
||||
this.eoscType = eoscType;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue