Allow module to be represented in different formats
[yangtools.git] / yang / yang-maven-plugin-spi / src / main / java / org / opendaylight / yangtools / yang2sources / spi / ModuleResourceResolver.java
1 /*
2  * Copyright (c) 2020 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.yang2sources.spi;
9
10 import com.google.common.annotations.Beta;
11 import java.util.Optional;
12 import org.opendaylight.yangtools.yang.model.api.Module;
13 import org.opendaylight.yangtools.yang.model.repo.api.SchemaSourceRepresentation;
14
15 /**
16  * An SPI-level interface to find the schema source for a particular YANG module, as packaged in the final artifact.
17  * The module must be part of the current resolution context.
18  */
19 @Beta
20 @FunctionalInterface
21 public interface ModuleResourceResolver {
22     /**
23      * Find the path of the packaged resource which corresponds to the specified module in the specified representation.
24      *
25      * @param module Requested module
26      * @param representation Requested representation
27      * @return Path to packaged resource
28      * @throws NullPointerException if any argument is null
29      * @throws IllegalArgumentException if the requested representation is not supported by this resolver
30      */
31     Optional<String> findModuleResourcePath(Module module, Class<? extends SchemaSourceRepresentation> representation);
32 }