Class HelperResource
- java.lang.Object
-
- io.opentelemetry.javaagent.tooling.muzzle.HelperResource
-
public abstract class HelperResource extends Object
-
-
Constructor Summary
Constructors Constructor Description HelperResource()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static HelperResourcecreate(String applicationPath, String agentPath)Create a new helper resource object.abstract StringgetAgentPath()The path in the agent class loader from which to get the content for the resource.abstract StringgetApplicationPath()The path in the user's class loader at which to inject the resource.
-
-
-
Method Detail
-
create
public static HelperResource create(String applicationPath, String agentPath)
Create a new helper resource object.- Parameters:
applicationPath- The path in the user's class loader at which to inject the resource.agentPath- The path in the agent class loader from which to get the content for the resource.
-
getApplicationPath
public abstract String getApplicationPath()
The path in the user's class loader at which to inject the resource.
-
getAgentPath
public abstract String getAgentPath()
The path in the agent class loader from which to get the content for the resource.
-
-