net.plsar.model.RequestComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plsar-java Show documentation
Show all versions of plsar-java Show documentation
PLSA.R is an Open Source Server + Framework Environment
for small to large scale 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.
package net.plsar.model;
import java.util.ArrayList;
import java.util.List;
public class RequestComponent {
String name;
String value;
boolean hasFiles;
List fileComponents;
List values;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public boolean isHasFiles() {
return hasFiles;
}
public void setHasFiles(boolean hasFiles) {
this.hasFiles = hasFiles;
}
public List getFileComponents() {
return fileComponents;
}
public void setFileComponents(List fileComponents) {
this.fileComponents = fileComponents;
}
public List getValues() {
return values;
}
public void setValues(List values) {
this.values = values;
}
public RequestComponent(){
this.values = new ArrayList<>();
this.fileComponents = new ArrayList<>();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy