1 17 18 19 package org.apache.tomcat.util.modeler; 20 21 22 import java.io.Serializable ; 23 24 import javax.management.MBeanFeatureInfo ; 25 26 27 36 37 public class FeatureInfo implements Serializable { 38 static final long serialVersionUID = -911529176124712296L; 39 40 protected String description = null; 41 protected String name = null; 42 protected MBeanFeatureInfo info = null; 43 44 protected String type = null; 46 47 48 50 53 public String getDescription() { 54 return (this.description); 55 } 56 57 public void setDescription(String description) { 58 this.description = description; 59 } 60 61 62 66 public String getName() { 67 return (this.name); 68 } 69 70 public void setName(String name) { 71 this.name = name; 72 } 73 74 77 public String getType() { 78 return (this.type); 79 } 80 81 public void setType(String type) { 82 this.type = type; 83 } 84 85 86 } 87 | Popular Tags |