![JAR search and dependency download from the Maven repository](/logo.png)
com.shedhack.thread.context.model.ThreadContextModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thread-context-handler Show documentation
Show all versions of thread-context-handler Show documentation
Context enabler, for helping with debugging/logging
package com.shedhack.thread.context.model;
import java.util.Date;
import java.util.Map;
/**
* Context Model
*
* @author imamchishty
*/
public interface ThreadContextModel {
void setMethodName(String name);
String getMethodName();
void setId(String id);
String getId();
void setParams(Map params);
void addParam(String key, Object value);
Map getParams();
void setContext(Map context);
void addContext(String key, Object context);
Map getContext();
void setTimestamp(Date dateTime);
Date getTimestamp();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy