Package net.bytebuddy.agent.builder
Class AgentBuilder.RedefinitionStrategy.ResubmissionStrategy.Installation
- java.lang.Object
-
- net.bytebuddy.agent.builder.AgentBuilder.RedefinitionStrategy.ResubmissionStrategy.Installation
-
- Enclosing interface:
- AgentBuilder.RedefinitionStrategy.ResubmissionStrategy
@Enhance public static class AgentBuilder.RedefinitionStrategy.ResubmissionStrategy.Installation extends java.lang.Object
Represents an installation of a resubmission strategy.
-
-
Field Summary
Fields Modifier and Type Field Description private AgentBuilder.InstallationListener
installationListener
The installation listener to apply.private AgentBuilder.Listener
listener
The listener to apply.
-
Constructor Summary
Constructors Modifier Constructor Description protected
Installation(AgentBuilder.Listener listener, AgentBuilder.InstallationListener installationListener)
Creates a new installation.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected AgentBuilder.InstallationListener
getInstallationListener()
Returns the installation listener to apply.protected AgentBuilder.Listener
getListener()
Returns the listener to apply.
-
-
-
Field Detail
-
listener
private final AgentBuilder.Listener listener
The listener to apply.
-
installationListener
private final AgentBuilder.InstallationListener installationListener
The installation listener to apply.
-
-
Constructor Detail
-
Installation
protected Installation(AgentBuilder.Listener listener, AgentBuilder.InstallationListener installationListener)
Creates a new installation.- Parameters:
listener
- The listener to apply.installationListener
- The installation listener to apply.
-
-
Method Detail
-
getListener
protected AgentBuilder.Listener getListener()
Returns the listener to apply.- Returns:
- The listener to apply.
-
getInstallationListener
protected AgentBuilder.InstallationListener getInstallationListener()
Returns the installation listener to apply.- Returns:
- The installation listener to apply.
-
-