01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc;
05:
06: public class WebApp {
07: String m_name;
08: String m_path;
09:
10: public WebApp(String name, String path) {
11: m_name = name;
12: m_path = path;
13: }
14:
15: public String getName() {
16: return m_name;
17: }
18:
19: public String getPath() {
20: return m_path;
21: }
22:
23: public String toString() {
24: return m_name;
25: }
26: }
|