
org.eweb4j.mvc.Crud Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eweb4j-all Show documentation
Show all versions of eweb4j-all Show documentation
easy web framework for java, full-stack
The newest version!
package org.eweb4j.mvc;
import org.eweb4j.mvc.validator.annotation.Validate;
public interface Crud {
String index();
String create();
@Validate("id")
String update();
@Validate("id")
String destroy();
@Validate("id")
String show();
@Validate("id")
String edit();
String editNew();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy