Package controllers

Source Code of controllers.MyBookCustomCrud

package controllers;

import play.db.Model;
import controllers.CRUD.ObjectType;
import controllers.OptimisticLockingCRUD.CustomizableObjectType;
import models.MyBook;

@CRUD.For(MyBook.class)
public class MyBookCustomCrud extends OptimisticLockingCRUD {
    public static CustomizableObjectType createObjectType(Class<? extends Model> entityClass) {
        final CustomizableObjectType type = OptimisticLockingCRUD.createObjectType(entityClass);
        type.defineBlankFields("excludedProperty", "text", "version");
        type.defineShowFields("excludedProperty", "text", "version");
        return type;
    }
}
TOP

Related Classes of controllers.MyBookCustomCrud

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.