Introduce AnnotationName
[yangtools.git] / model / rfc7952-model-api / src / main / java / org / opendaylight / yangtools / rfc7952 / model / api / AnnotationSchemaNodeAware.java
1 /*
2  * Copyright (c) 2019 PANTHEON.tech, s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.rfc7952.model.api;
9
10 import com.google.common.annotations.Beta;
11 import java.util.Optional;
12 import org.eclipse.jdt.annotation.NonNull;
13 import org.opendaylight.yangtools.yang.common.AnnotationName;
14
15 /**
16  * Interface for entities which can lookup {@link AnnotationSchemaNode}s based on their name.
17  */
18 @Beta
19 public interface AnnotationSchemaNodeAware {
20     /**
21      * Find an annotation based on its QName.
22      *
23      * @param name Annotation name
24      * @return AnnotationSchemaNode if found
25      * @throws NullPointerException if {@code qname} is null
26      */
27     @NonNull Optional<AnnotationSchemaNode> findAnnotation(AnnotationName name);
28 }