/** * Set the instance for which this message is targeted * * @param msgTgt instance name */ public void setTgtName(String msgTgt) { _record.setSimpleField(Attributes.TGT_NAME.toString(), msgTgt); }
/** * Get the name of the target instance * * @return instance name */ public String getTgtName() { return _record.getSimpleField(Attributes.TGT_NAME.toString()); }