69 lines
2 KiB
Java
69 lines
2 KiB
Java
package stirling.software.SPDF.controller.web;
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
import org.springframework.ui.Model;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
import io.swagger.v3.oas.annotations.Hidden;
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
|
@Controller
|
|
@Tag(name = "Security", description = "Security APIs")
|
|
public class SecurityWebController {
|
|
|
|
@GetMapping("/auto-redact")
|
|
@Hidden
|
|
public String autoRedactForm(Model model) {
|
|
model.addAttribute("currentPage", "auto-redact");
|
|
return "security/auto-redact";
|
|
}
|
|
|
|
@GetMapping("/add-password")
|
|
@Hidden
|
|
public String addPasswordForm(Model model) {
|
|
model.addAttribute("currentPage", "add-password");
|
|
return "security/add-password";
|
|
}
|
|
|
|
@GetMapping("/change-permissions")
|
|
@Hidden
|
|
public String permissionsForm(Model model) {
|
|
model.addAttribute("currentPage", "change-permissions");
|
|
return "security/change-permissions";
|
|
}
|
|
|
|
@GetMapping("/remove-password")
|
|
@Hidden
|
|
public String removePasswordForm(Model model) {
|
|
model.addAttribute("currentPage", "remove-password");
|
|
return "security/remove-password";
|
|
}
|
|
|
|
@GetMapping("/add-watermark")
|
|
@Hidden
|
|
public String addWatermarkForm(Model model) {
|
|
model.addAttribute("currentPage", "add-watermark");
|
|
return "security/add-watermark";
|
|
}
|
|
|
|
@GetMapping("/cert-sign")
|
|
@Hidden
|
|
public String certSignForm(Model model) {
|
|
model.addAttribute("currentPage", "cert-sign");
|
|
return "security/cert-sign";
|
|
}
|
|
|
|
@GetMapping("/sanitize-pdf")
|
|
@Hidden
|
|
public String sanitizeForm(Model model) {
|
|
model.addAttribute("currentPage", "sanitize-pdf");
|
|
return "security/sanitize-pdf";
|
|
}
|
|
|
|
@GetMapping("/get-info-on-pdf")
|
|
@Hidden
|
|
public String getInfo(Model model) {
|
|
model.addAttribute("currentPage", "get-info-on-pdf");
|
|
return "security/get-info-on-pdf";
|
|
}
|
|
}
|