net.yadaframework.security.web.YadaCropDefinition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yadawebsecurity Show documentation
Show all versions of yadawebsecurity Show documentation
Yada Framework authentication and authorization component
package net.yadaframework.security.web;
import java.util.HashMap;
import java.util.Map;
public class YadaCropDefinition {
private Map desktopCrop = new HashMap<>();
private Map mobileCrop = new HashMap<>();
private Map pdfCrop = new HashMap<>();
public Map getDesktopCrop() {
return desktopCrop;
}
public void setDesktopCrop(Map desktopCrop) {
this.desktopCrop = desktopCrop;
}
public Map getMobileCrop() {
return mobileCrop;
}
public void setMobileCrop(Map mobileCrop) {
this.mobileCrop = mobileCrop;
}
public Map getPdfCrop() {
return pdfCrop;
}
public void setPdfCrop(Map pdfCrop) {
this.pdfCrop = pdfCrop;
}
}