Merge branch 'master' into springdoc-openapi-ui

This commit is contained in:
Michele Artini 2022-09-06 13:30:02 +02:00
commit 4b09f75930
1 changed files with 11 additions and 0 deletions

View File

@ -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;
}
}