
org.aspectj.configuration.model.GlobalContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aspectj-scripting Show documentation
Show all versions of aspectj-scripting Show documentation
Scripting extension for AspectJ agent. Allow java bytecode instrumentation at jvm startup
by using MVEL expression and execute code from maven artifacts
The newest version!
package org.aspectj.configuration.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
@XmlAccessorType(XmlAccessType.FIELD)
public class GlobalContext {
private Artifact[] artifacts;
private Expression init;
private Expression dispose;
private TimerTask[] timerTasks;
GlobalContext() {
}
public GlobalContext(Artifact[] artifacts, Expression init, Expression dispose, TimerTask[] timerTasks) {
this.artifacts = artifacts;
this.init = init;
this.dispose = dispose;
this.timerTasks = timerTasks;
}
public Artifact[] getArtifacts() {
return artifacts;
}
public Expression getInit() {
return init;
}
public Expression getDispose() {
return dispose;
}
public TimerTask[] getTimerTasks() {
return timerTasks;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy