com.reprezen.kaizen.oasparser.val3.ServerVariableValidator Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2017 ModelSolv, Inc. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* ModelSolv, Inc. - initial API and implementation and/or initial documentation
*******************************************************************************/
package com.reprezen.kaizen.oasparser.val3;
import static com.reprezen.kaizen.oasparser.ovl3.ServerVariableImpl.F_defaultValue;
import static com.reprezen.kaizen.oasparser.ovl3.ServerVariableImpl.F_description;
import static com.reprezen.kaizen.oasparser.ovl3.ServerVariableImpl.F_enumValues;
import com.reprezen.kaizen.oasparser.model3.ServerVariable;
import com.reprezen.kaizen.oasparser.val.ObjectValidatorBase;
public class ServerVariableValidator extends ObjectValidatorBase {
@Override
public void runObjectValidations() {
ServerVariable var = (ServerVariable) value.getOverlay();
validateStringField(F_description, false);
validateListField(F_enumValues, false, false, String.class, null);
// TODO Q: What the heck is does the description in the spec mean???
validateField(F_defaultValue, true, String.class, null);
validateExtensions(var.getExtensions());
}
}