com.github.dmgcodevil.jmspy.context.InvocationContextInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmspy-core Show documentation
Show all versions of jmspy-core Show documentation
Library to record method invocations
package com.github.dmgcodevil.jmspy.context;
import java.io.Serializable;
import java.util.Map;
/**
* Additional information about execution environment, such as app name, url and etc.
*
* @author dmgcodevil
*/
public class InvocationContextInfo implements Serializable {
private static final long serialVersionUID = -2590916494625547978L;
private String info;
private Map details;
public String getInfo() {
return info;
}
public void setInfo(String info) {
this.info = info;
}
public Map getDetails() {
return details;
}
public void setDetails(Map details) {
this.details = details;
}
}