We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc5b1f8 commit 8e1e1d0Copy full SHA for 8e1e1d0
src/main/java/org/jboss/ws/common/utils/DelegateClassLoader.java
@@ -37,6 +37,7 @@
37
*/
38
public class DelegateClassLoader extends SecureClassLoader
39
{
40
+
41
private final ClassLoader delegate;
42
43
private final ClassLoader parent;
@@ -136,4 +137,9 @@ public InputStream getResourceAsStream(final String name)
136
137
}
138
return (is == null) ? delegate.getResourceAsStream(name) : is;
139
140
141
+ public ClassLoader getDelegate() {
142
+ return delegate;
143
+ }
144
145
0 commit comments