com.reprezen.kaizen.oasparser.val3.ExampleValidator 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.ExampleImpl.F_description;
import static com.reprezen.kaizen.oasparser.ovl3.ExampleImpl.F_externalValue;
import static com.reprezen.kaizen.oasparser.ovl3.ExampleImpl.F_summary;
import static com.reprezen.kaizen.oasparser.ovl3.ExampleImpl.F_value;
import static com.reprezen.kaizen.oasparser.val.msg.Messages.msg;
import static com.reprezen.kaizen.oasparser.val3.OpenApi3Messages.ExampleNoValue;
import static com.reprezen.kaizen.oasparser.val3.OpenApi3Messages.ExmplTwoValues;
import com.reprezen.jsonoverlay.Overlay;
import com.reprezen.kaizen.oasparser.model3.Example;
import com.reprezen.kaizen.oasparser.val.ObjectValidatorBase;
public class ExampleValidator extends ObjectValidatorBase {
@Override
public void runObjectValidations() {
Example example = (Example) value.getOverlay();
validateStringField(F_summary, false);
validateStringField(F_description, false);
Overlay