1 26 27 package org.objectweb.jonas.adm; 28 29 import java.io.Serializable ; 30 31 36 public class ModuleDesc implements Serializable { 37 private String path; 38 private int status; 39 private String url; 40 41 public ModuleDesc(String path, int status, String url) { 42 this.path = path; 43 this.status = status; 44 this.url = url; 45 } 46 47 public int getStatus() { 48 return this.status; 49 } 50 51 public String getPath() { 52 return this.path; 53 } 54 55 public String getURL() { 56 return this.url; 57 } 58 59 } 60 | Popular Tags |