/******************************************************************************* * Copyright (c) 2015 Red Hat, Inc. * Distributed under license by Red Hat, Inc. All rights reserved. * This program is 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: * Red Hat, Inc. - initial API and implementation ******************************************************************************/ package org.jboss.tools.common.validation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Add this annotation to an implementation of ELResolver to * prevent ELValidator from invoking method * ELResolver.resolve(ELContext context, ELExpression operand, int offset) * That may be of help, if validation is to be implemented in another, more * efficient way, but resolver is still needed for CA and OpenOns. * * @author Viacheslav Kabanovich * */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) public @interface SkipValidation { }