| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- package es.uv.saic.dto;
- public class DocumentDTO {
- private String text;
- private String ruta;
-
- public DocumentDTO() {}
-
- public DocumentDTO(String text, String ruta, String data, String size) {
- String template = """
- <a style="width:100;display:flex;" target="_blank" href="/download/document/[ruta]">
- <span style="width:100%;display:flex;">
- <span style="width:80%;text-align:left;">[text]</span>
- <span>[data]</span>
-
- <span> ([size])</span>
- </span>
- </a>
- """;
- this.text = template.replace("[ruta]", ruta).replace("[text]", text).replace("[data]", data).replace("[size]", size);
- this.ruta = ruta;
- }
-
- public String getText() {
- return text;
- }
- public void setText(String text) {
- this.text = text;
- }
- public String getRuta() {
- return ruta;
- }
- public void setRuta(String ruta) {
- this.ruta = ruta;
- }
-
-
-
- }
|