Package-level declarations
Types
Link copied to clipboard
The
DefaultEquinoxController
class is useful to give the base behavior of the Equinox's
controllers with the default EquinoxUser
class and for a greater clarity during your own
implementation:
public SomeCustomController extends EquinoxController<EquinoxUser> {
// rest of the class
}
public SomeCustomControllerTwo extends EquinoxController<EquinoxUser> {
// rest of the class
}
// wrap the declaration for a better readability
public SomeCustomController extends DefaultEquinoxController {
// rest of the class
}
// wrap the declaration for a better readability
public SomeCustomControllerTwo extends DefaultEquinoxController {
// rest of the class
}
Content copied to clipboard