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

org.aspectj.configuration.model.ResourceRef 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 ResourceRef {
    private String variable;
    private String resourceName;
    private boolean useUrl = true;

    ResourceRef() {
    }

    public ResourceRef(String variable, String resourceName, boolean useUrl) {
        this.variable = variable;
        this.resourceName = resourceName;
        this.useUrl = useUrl;
    }

    public String getVariable() {
        return variable;
    }
    
    public String getResourceName() {
        return resourceName;
    }

    public boolean isUseUrl() {
        return useUrl;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy