1 25 26 package org.objectweb.jonas.webapp.jonasadmin.common; 27 28 34 public class ModuleItem implements NameItem { 35 38 private String name = null; 39 42 private String objectName = null; 43 46 private String filePath = null; 47 48 51 public ModuleItem() { 52 } 53 59 public ModuleItem(String name, String objectName, String filePath) { 60 this.name = name; 61 this.objectName = objectName; 62 this.filePath = filePath; 63 } 64 65 68 public String getName() { 69 return name; 70 } 71 74 public void setName(String name) { 75 this.name = name; 76 } 77 80 public String getObjectName() { 81 return objectName; 82 } 83 86 public void setObjectName(String objectName) { 87 this.objectName = objectName; 88 } 89 92 public String getFilePath() { 93 return filePath; 94 } 95 98 public void setFilePath(String filePath) { 99 this.filePath = filePath; 100 } 101 102 } 103 | Popular Tags |