com.tinkerpop.rexster.extension.RexsterExtension Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rexster-core Show documentation
Show all versions of rexster-core Show documentation
Core components for extending Rexster.
package com.tinkerpop.rexster.extension;
/**
* Marks a class as one that can be used as an extension to Rexster.
*
* @author Stephen Mallette (http://stephen.genoprime.com)
*/
public interface RexsterExtension {
/**
* Determines if the configuration for the extension is valid.
*
* @return True if the configuration is valid and false otherwise.
*/
public boolean isConfigurationValid(final ExtensionConfiguration extensionConfiguration);
}