ActionMapping.java
上传用户:zhc3n3
上传日期:2022-07-30
资源大小:2750k
文件大小:1k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

JavaScript

  1. package com.t11.web;
  2. import java.util.Map;
  3. public class ActionMapping {
  4. private String path;
  5. private String type;
  6. private boolean redirect;
  7. private Map<String,ActionForward> forwards;
  8. public String getPath() {
  9. return path;
  10. }
  11. public void setPath(String path) {
  12. this.path = path;
  13. }
  14. public String getType() {
  15. return type;
  16. }
  17. public void setType(String type) {
  18. this.type = type;
  19. }
  20. public boolean isRedirect() {
  21. return redirect;
  22. }
  23. public void setRedirect(boolean redirect) {
  24. this.redirect = redirect;
  25. }
  26. public Map<String, ActionForward> getForward() {
  27. return forwards;
  28. }
  29. public void setForward(Map<String, ActionForward> forward) {
  30. this.forwards = forward;
  31. }
  32. }