1 16 17 package org.springframework.jmx.export.metadata; 18 19 27 public class ManagedOperationParameter { 28 29 private int index = 0; 30 31 private String name = ""; 32 33 private String description = ""; 34 35 36 39 public void setIndex(int index) { 40 this.index = index; 41 } 42 43 46 public int getIndex() { 47 return index; 48 } 49 50 53 public void setName(String name) { 54 this.name = name; 55 } 56 57 60 public String getName() { 61 return this.name; 62 } 63 64 public void setDescription(String description) { 65 this.description = description; 66 } 67 68 public String getDescription() { 69 return description; 70 } 71 72 } 73 | Popular Tags |