001/**
002 * Copyright 2005-2015 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.rice.krad.service;
017
018import org.kuali.rice.krad.datadictionary.validation.result.DictionaryValidationResult;
019import org.kuali.rice.krad.uif.view.View;
020import org.kuali.rice.krad.uif.view.ViewModel;
021
022/**
023 * Validation service for KRAD views.  The ViewValidationService uses the DictionaryValidationService to validate the
024 * fields of the View by using the constraints that were set at either the InputField or AttributeDefinition level for
025 * that field.  If errors/warnings are found they are added to the messageMap and when the view is returned these
026 * messages are displayed.
027 *
028 * @author Kuali Rice Team (rice.collab@kuali.org)
029 */
030public interface ViewValidationService {
031
032    /**
033     * This is the main validation method that should be used when validating Views
034     * Validates the view based on the model passed in, this will correctly use previousView by default
035     * as it automatically contains the generated data the validation requires. Validates against the current state if
036     * state based validation
037     * is setup.
038     *
039     * @param model the model which contains the values (and View) to validated
040     * @return DictionaryValidationResult that contains any errors/messages if any, messages will have already
041     *         been added to the MessageMap
042     */
043    public DictionaryValidationResult validateView(ViewModel model);
044
045
046    /**
047     * Validate the view against the specific validationState instead of the default (current state).  If
048     * forcedValidationState
049     * is null, validates against the current state if state validation is setup.
050     *
051     * @param model the model which contains the values to validated
052     * @param forcedValidationState the state being validated against
053     * @return that contains any errors/messages if any,, messages will have already
054     *         been added to the MessageMap
055     */
056    public DictionaryValidationResult validateView(ViewModel model, String forcedValidationState);
057
058    /**
059     * Validate the view against the next state based on the order of the states in the views StateMapping.  This
060     * will validate against current state + 1.  If there is no next state, this will validate against the current
061     * state.
062     *
063     * @param model the model which contains the values to validated
064     * @return that contains any errors/messages if any,, messages will have already
065     *         been added to the MessageMap
066     */
067    public DictionaryValidationResult validateViewAgainstNextState(ViewModel model);
068
069    /**
070     * Simulate view validation - this will run all validations against all states from the current state to
071     * the last state in the list of states in the view's stateMapping.  Validation errors received for the current
072     * state will be added as errors to the MessageMap. Validation errors for future states will be warnings.
073     *
074     * @param model the model which contains the values to validated
075     */
076    public void validateViewSimulation(ViewModel model);
077
078    /**
079     * Simulate view validation - this will run all validations against all states from the current state to
080     * the untilState specified in the list of states in the view's stateMapping.  Validation errors received for the
081     * current state will be added as errors to the MessageMap. Validation errors for future states will be warnings.
082     *
083     * @param model the model which contains the values to validated
084     * @param untilState state to perform simulation to, if not set performs simulation up to the last state
085     */
086    public void validateViewSimulation(ViewModel model, String untilState);
087
088}