All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.commons.configuration.io.ConfigurationResourceResolver Maven / Gradle / Ivy

The newest version!
package org.infinispan.commons.configuration.io;

import java.io.IOException;
import java.net.URL;

/**
 * @author Tristan Tarrant <[email protected]>
 * @since 12.1
 **/
public interface ConfigurationResourceResolver {

   // ISPN-15004 Lazily resolve URLConfigurationResourceResolver instance to prevent circular dependency
   // Replaced by ConfigurationResourceResolvers.DEFAULT instead. Variable only retained for backwards-compatibility.
   @Deprecated(forRemoval=true, since = "14.0")
   ConfigurationResourceResolver DEFAULT = href -> new URLConfigurationResourceResolver(null).resolveResource(href);

   URL resolveResource(String href) throws IOException;

   default URL getContext() {
      return null;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy