All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.aspectj.configuration.model.Artifact Maven / Gradle / Ivy

Go to download

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 Artifact {
    private String artifact;
    private ClassRef[] classRefs;
    private ResourceRef[] resourceRefs;

    Artifact() {
    }

    public Artifact(String artifact, ClassRef[] classRefs, ResourceRef[] resourceRefs) {
        this.artifact = artifact;
        this.classRefs = classRefs;
        this.resourceRefs = resourceRefs;
    }

    public String getArtifact() {
        return artifact;
    }

    public ClassRef[] getClassRefs() {
        return classRefs;
    }

    public ResourceRef[] getResourceRefs() {
        return resourceRefs;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy