01: /*
02: * Copyright (c) 2002-2006 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.webwork.quickstart;
06:
07: /**
08: * Used for mapping configuration for the QuickStart application.
09: *
10: * @author patrick
11: */
12: public class Mapping {
13: String path;
14: String dir;
15:
16: public Mapping(String path, String dir) {
17: this .path = path;
18: this .dir = dir;
19: }
20:
21: public Mapping() {
22: }
23:
24: public String getPath() {
25: return path;
26: }
27:
28: public void setPath(String path) {
29: this .path = path;
30: }
31:
32: public String getDir() {
33: return dir;
34: }
35:
36: public void setDir(String dir) {
37: this.dir = dir;
38: }
39: }
|