allow to set the filename and software module id
Signed-off-by: Michael Hirsch <michael.hirsch@bosch-si.com>
This commit is contained in:
@@ -186,9 +186,9 @@ public class TenantSecurityToken {
|
||||
@JsonIgnoreProperties(ignoreUnknown = true)
|
||||
public static class SoftwareModuleFilenameResource {
|
||||
@JsonProperty(required = false)
|
||||
private final Long softwareModuleId;
|
||||
private Long softwareModuleId;
|
||||
@JsonProperty(required = false)
|
||||
private final String filename;
|
||||
private String filename;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
@@ -213,6 +213,14 @@ public class TenantSecurityToken {
|
||||
public String getFilename() {
|
||||
return filename;
|
||||
}
|
||||
|
||||
public void setSoftwareModuleId(final Long softwareModuleId) {
|
||||
this.softwareModuleId = softwareModuleId;
|
||||
}
|
||||
|
||||
public void setFilename(final String filename) {
|
||||
this.filename = filename;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user