All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.shedhack.thread.context.model.ThreadContextModel Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
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