InvokeParam.java 499 B

12345678910111213141516171819202122232425262728
  1. package com.sec.xinhua.gateway.beans;
  2. public class InvokeParam {
  3. private String type;
  4. private Object value;
  5. public InvokeParam(String type, Object value) {
  6. this.type = type;
  7. this.value = value;
  8. }
  9. public String getType() {
  10. return type;
  11. }
  12. public void setType(String type) {
  13. this.type = type;
  14. }
  15. public Object getValue() {
  16. return value;
  17. }
  18. public void setValue(Object value) {
  19. this.value = value;
  20. }
  21. }