org.apigw.authserver.web.validator.ApplicationValidator.java Source code

Java tutorial

Introduction

Here is the source code for org.apigw.authserver.web.validator.ApplicationValidator.java

Source

/**
 *   Copyright 2013 Stockholm County Council
 *
 *   This file is part of APIGW
 *
 *   APIGW is free software; you can redistribute it and/or modify
 *   it under the terms of version 2.1 of the GNU Lesser General Public
 *   License as published by the Free Software Foundation.
 *
 *   APIGW is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU Lesser General Public License for more details.
 *
 *   You should have received a copy of the GNU Lesser General Public
 *   License along with APIGW; if not, write to the
 *   Free Software Foundation, Inc., 59 Temple Place, Suite 330,
 *   Boston, MA 02111-1307  USA
 *
 */
package org.apigw.authserver.web.validator;

import org.apigw.appmanagement.domain.Application;
import org.springframework.validation.Errors;
import org.springframework.validation.ValidationUtils;
import org.springframework.validation.Validator;

public class ApplicationValidator implements Validator {

    @Override
    public boolean supports(Class<?> clazz) {
        return Application.class.isAssignableFrom(clazz);
    }

    @Override
    public void validate(Object target, Errors errors) {
        ValidationUtils.rejectIfEmptyOrWhitespace(errors, "name", "required", "Name required");
        ValidationUtils.rejectIfEmptyOrWhitespace(errors, "description", "required", "Description required");
        ValidationUtils.rejectIfEmptyOrWhitespace(errors, "clientId", "required", "ClientId required");
        ValidationUtils.rejectIfEmptyOrWhitespace(errors, "tags", "required", "Tags required");
        //ValidationUtils.rejectIfEmptyOrWhitespace(errors, "organization", "required", "Organization required");
        ValidationUtils.rejectIfEmptyOrWhitespace(errors, "organizationNumber", "required",
                "Organization number required");
        ValidationUtils.rejectIfEmptyOrWhitespace(errors, "email", "required", "E-mail required");
        ValidationUtils.rejectIfEmptyOrWhitespace(errors, "phonenumber", "required", "Phone number required");
        ValidationUtils.rejectIfEmptyOrWhitespace(errors, "url", "required", "URL required");

    }
}