Example usage for org.apache.commons.vfs.provider UriParser extractScheme

List of usage examples for org.apache.commons.vfs.provider UriParser extractScheme

Introduction

In this page you can find the example usage for org.apache.commons.vfs.provider UriParser extractScheme.

Prototype

public static String extractScheme(final String uri) 

Source Link

Document

Extracts the scheme from a URI.

Usage

From source file:com.newatlanta.appengine.vfs.provider.GaeFileSystemManager.java

private boolean isSchemeSpecified(String uri) {
    String scheme = UriParser.extractScheme(uri);
    return ((scheme != null) && super.hasProvider(scheme));
}