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

com.tinkerpop.frames.modules.DefaultClassLoaderResolver Maven / Gradle / Ivy

Go to download

Windup Frames is an extension of the upstream Frames project, with tools to ease debugging and integration within windup.

There is a newer version: 4.0.1.Final
Show newest version
package com.tinkerpop.frames.modules;

/**
 * Implements a basic FrameClassLoaderResolver that simply returns
 * the ClassLoader of the provided Frame Type.
 *
 * @author Jess Sightler 
 */
public class DefaultClassLoaderResolver implements FrameClassLoaderResolver {
    @Override
    public ClassLoader resolveClassLoader(Class frameType) {
        return frameType.getClassLoader();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy