Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

W-17317919: Remove classloader fallback from ServiceClassLoaderFactoryProvider and ContainerModulesDiscovererProvider #14028

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
package org.mule.runtime.module.service.api.artifact;

import org.mule.runtime.container.api.ContainerDependantArtifactClassLoaderFactory;

public interface IServiceClassLoaderFactory extends ContainerDependantArtifactClassLoaderFactory<ServiceDescriptor> {
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@
/**
* Creates {@link ArtifactClassLoader} for service descriptors.
*
* @deprecated since 4.8, use {@link IServiceClassLoaderFactory}
*/
// TODO W-12780081 - remove usages of deprecated creation method
@Deprecated
public class ServiceClassLoaderFactory
implements ArtifactClassLoaderFactory<ServiceDescriptor>, ContainerDependantArtifactClassLoaderFactory<ServiceDescriptor> {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
* previous implementation.
*
* @since 4.5
* @deprecated since 4.8, use {@link ServiceClassLoaderFactoryProvider} instead.
*/
public class ServiceClassLoaderFactoryProvider {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@

/**
* Creates {@link ArtifactClassLoader} for service descriptors.
* @deprecated since 4.8, see {@link IServiceClassLoaderFactory}
*/
class ServiceModuleLayerFactory extends ServiceClassLoaderFactory {

Expand Down