
org.eweb4j.mvc.config.bean.ResultConfigBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eweb4j-all Show documentation
Show all versions of eweb4j-all Show documentation
easy web framework for java, full-stack
The newest version!
package org.eweb4j.mvc.config.bean;
import org.eweb4j.util.xml.AttrTag;
/**
* MVC组件用来存取配置信息的Bean
*
* @author cfuture.aw
* @since v1.a.0
*/
public class ResultConfigBean {
@AttrTag
private String name = "success";
@AttrTag
private String type = "forward";
@AttrTag
private String location;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getLocation() {
return location;
}
public void setLocation(String value) {
this.location = value;
}
@Override
public String toString() {
return "ResultConfigBean [name=" + name + ", type=" + type
+ ", location=" + location + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy