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
    }
Link copied to clipboard
@RestController
@RequestMapping(value = "/api/v1/" )
abstract class EquinoxController<T : EquinoxUser?, R : EquinoxUsersRepository<T>?, H : EquinoxUsersHelper<T, R>?>
The EquinoxController class is useful to give the base behavior of the Equinox's controllers
Link copied to clipboard
The EquinoxUsersController class is useful to manage all the user operations