Skip to content

Commit c3dd647

Browse files
committed
[JBWS-4432]:Add getter for DelegateClassLoader
1 parent f617268 commit c3dd647

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/main/java/org/jboss/ws/common/utils/DelegateClassLoader.java

+6
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
*/
3535
public class DelegateClassLoader extends SecureClassLoader
3636
{
37+
3738
private final ClassLoader delegate;
3839

3940
private final ClassLoader parent;
@@ -133,4 +134,9 @@ public InputStream getResourceAsStream(final String name)
133134
}
134135
return (is == null) ? delegate.getResourceAsStream(name) : is;
135136
}
137+
138+
public ClassLoader getDelegate() {
139+
return delegate;
140+
}
141+
136142
}

0 commit comments

Comments
 (0)