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

net.plsar.MethodAttribute Maven / Gradle / Ivy

Go to download

PLSA.R is an Open Source Java Server + API for high demand, low latency requirements. There are no static references, no file reads, access to static fields per request. Everything is either cached and or instantiated on the fly. PLSA.R runs via one command so there are no .war files to deploy, no additional plugins to install it is a simple yet powerful alternative to container deployment environments. PLSA.R even boasts a little dependency injection for data logic. www.plsar.net

The newest version!
package net.plsar;

public class MethodAttribute {
    String description;
    Object attribute;

    public String getDescription() {
        return description;
    }

    public void setDescription(String description) {
        this.description = description;
    }

    public Object getAttribute() {
        return attribute;
    }

    public void setAttribute(Object attribute) {
        this.attribute = attribute;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy