@Retention(value=RUNTIME) @Target(value=METHOD) public @interface Virtual
Mark a controller action handler method is virtual.
If an action handler method is virtual then framework will register the route for sub classes. e.g
// The base controller provides
doIt
handler public abstract class BaseController { protected abstract doPlumbingWork() {}
Copyright © 2014–2018 ActFramework. All rights reserved.