1 15 package org.apache.hivemind.lib.chain; 16 17 23 public class ChainContribution 24 { 25 private String _id; 26 27 private String _before; 28 29 private String _after; 30 31 private Object _command; 32 33 public String getAfter() 34 { 35 return _after; 36 } 37 38 public void setAfter(String after) 39 { 40 _after = after; 41 } 42 43 public String getBefore() 44 { 45 return _before; 46 } 47 48 public void setBefore(String before) 49 { 50 _before = before; 51 } 52 53 public Object getCommand() 54 { 55 return _command; 56 } 57 58 public void setCommand(Object command) 59 { 60 _command = command; 61 } 62 63 public String getId() 64 { 65 return _id; 66 } 67 68 public void setId(String id) 69 { 70 _id = id; 71 } 72 } | Popular Tags |