ActionMapping.java
上传用户:zhc3n3
上传日期:2022-07-30
资源大小:2750k
文件大小:1k
源码类别:
WEB源码(ASP,PHP,...)
开发平台:
JavaScript
- package com.t11.web;
- import java.util.Map;
- public class ActionMapping {
- private String path;
- private String type;
- private boolean redirect;
- private Map<String,ActionForward> forwards;
- public String getPath() {
- return path;
- }
- public void setPath(String path) {
- this.path = path;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public boolean isRedirect() {
- return redirect;
- }
- public void setRedirect(boolean redirect) {
- this.redirect = redirect;
- }
- public Map<String, ActionForward> getForward() {
- return forwards;
- }
- public void setForward(Map<String, ActionForward> forward) {
- this.forwards = forward;
- }
- }