All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eweb4j.mvc.Crud Maven / Gradle / Ivy

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