com.fastchar.response.FastResponseHeader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastchar Show documentation
Show all versions of fastchar Show documentation
FastChar is Web+ORM Framework in Java.
package com.fastchar.response;
import java.io.Serializable;
public class FastResponseHeader implements Serializable {
private String name;
private Object value;
public String getName() {
return name;
}
public FastResponseHeader setName(String name) {
this.name = name;
return this;
}
public Object getValue() {
return value;
}
public FastResponseHeader setValue(Object value) {
this.value = value;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy