/* * Copyright (c) 2014 Cisco Systems, 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/eplv10.html */ package org.opendaylight.yangtools.yang.model.repo.spi; import com.google.common.annotations.Beta; import com.google.common.util.concurrent.CheckedFuture; import org.opendaylight.yangtools.yang.model.repo.api.MissingSchemaSourceException; import org.opendaylight.yangtools.yang.model.repo.api.SchemaSourceException; import org.opendaylight.yangtools.yang.model.repo.api.SchemaSourceRepresentation; import org.opendaylight.yangtools.yang.model.repo.api.SourceIdentifier; /** * Schema source provider implementations take care of resolving a {@link SourceIdentifier} * into a particular representation of the schema source. Examples of resolution include * fetching the source from an external source, opening a classpath resource, or similar. * * @param Schema source representation type provided by this implementation */ @Beta public interface SchemaSourceProvider { /** * Returns a representation a for supplied YANG source identifier. The resolution * criteria are as follows: * *