show/hide this revision's text 3 added 168 characters in body

Unfortunately this isn't entirely possible as the ClassLoader won't tell you what classes are available. You can, however, get fairly close doing something like this:

for (String classpathEntry : System.getProperty("java.class.path").split(System.getProperty("path.separator")) {
    if (classpathEntry.endsWith(".jar")) {
        File jar = new File(classpathEntry);
        JarInputStream is = new JarInputStream(new ByteArrayInputStream(jar));

        JarEntry entry;
        while( (entry = is.getNextJarEntry()) != null) {
            if(entry.getName().endsWith(".class")) {
                // Class.forName(entry.getName()) and check
                // for implementation of the interface
            }
        }
    }
}

Edit: johnstok is correct (in the comments) that this only works for standalone Java applications, and won't work under an application server.

show/hide this revision's text 2 added 4 characters in body

Unfortunately this isn't entirely possiblethe possible as the ClassLoader won't tell you what classes are available. You can, however, get fairly close doing something like this:

for (String classpathEntry : System.getProperty("java.class.path").split(System.getProperty("path.separator")) {
    if (classpathEntry.endsWith(".jar")) {
        File jar = new File(classpathEntry);
        JarInputStream is = new JarInputStream(new ByteArrayInputStream(jar));

        JarEntry entry;
        while( (entry = is.getNextJarEntry()) != null) {
            if(entry.getName().endsWith(".class")) {
                // Class.forName(entry.getName()) and check
                // for implementation of the interface
            }
        }
    }
}

show/hide this revision's text 1

Unfortunately this isn't entirely possiblethe ClassLoader won't tell you what classes are available. You can, however, get fairly close doing something like this:

for (String classpathEntry : System.getProperty("java.class.path").split(System.getProperty("path.separator")) {
    if (classpathEntry.endsWith(".jar")) {
        File jar = new File(classpathEntry);
        JarInputStream is = new JarInputStream(new ByteArrayInputStream(jar));

        JarEntry entry;
        while( (entry = is.getNextJarEntry()) != null) {
            if(entry.getName().endsWith(".class")) {
                // Class.forName(entry.getName()) and check
                // for implementation of the interface
            }
        }
    }
}