Java Code Examples for org.springframework.validation.BindException#getModel()

The following examples show how to use org.springframework.validation.BindException#getModel() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PremiumSettingsController.java    From subsonic with GNU General Public License v3.0 6 votes vote down vote up
protected ModelAndView onSubmit(HttpServletRequest request, HttpServletResponse response, Object com, BindException errors)
        throws Exception {
    PremiumSettingsCommand command = (PremiumSettingsCommand) com;
    Date now = new Date();

    settingsService.setLicenseCode(command.getLicenseCode());
    settingsService.setLicenseEmail(command.getLicenseInfo().getLicenseEmail());
    settingsService.setLicenseDate(now);
    settingsService.save();
    settingsService.scheduleLicenseValidation();

    // Reflect changes in view. The validator will validate the license asynchronously.
    command.setLicenseInfo(settingsService.getLicenseInfo());
    command.setToast(true);

    return new ModelAndView(getSuccessView(), errors.getModel());
}
 
Example 2
Source File: SearchController.java    From subsonic with GNU General Public License v3.0 5 votes vote down vote up
@Override
protected ModelAndView onSubmit(HttpServletRequest request, HttpServletResponse response, Object com, BindException errors)
        throws Exception {
    SearchCommand command = (SearchCommand) com;

    User user = securityService.getCurrentUser(request);
    UserSettings userSettings = settingsService.getUserSettings(user.getUsername());
    command.setUser(user);
    command.setPartyModeEnabled(userSettings.isPartyModeEnabled());

    List<MusicFolder> musicFolders = settingsService.getMusicFoldersForUser(user.getUsername());
    String query = StringUtils.trimToNull(command.getQuery());

    if (query != null) {

        SearchCriteria criteria = new SearchCriteria();
        criteria.setCount(MATCH_COUNT);
        criteria.setQuery(query);

        SearchResult artists = searchService.search(criteria, musicFolders, SearchService.IndexType.ARTIST);
        command.setArtists(artists.getMediaFiles());

        SearchResult albums = searchService.search(criteria, musicFolders, SearchService.IndexType.ALBUM);
        command.setAlbums(albums.getMediaFiles());

        SearchResult songs = searchService.search(criteria, musicFolders, SearchService.IndexType.SONG);
        command.setSongs(songs.getMediaFiles());

        command.setPlayer(playerService.getPlayer(request, response));
    }

    return new ModelAndView(getSuccessView(), errors.getModel());
}