Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import java.util.HashMap;
import java.util.Map;

public class Main {
    public static final ThreadLocal<Map<String, String>> threadLocals = new ThreadLocal<Map<String, String>>();

    public static void set(String key, String value) {
        Map<String, String> values = threadLocals.get();
        if (values == null) {
            values = new HashMap<String, String>();
            threadLocals.set(values);
        }
        values.put(key, value);
    }

    public static String get(String key) {
        Map<String, String> values = threadLocals.get();
        if (values == null) {
            return null;
        }
        return values.get(key);
    }
}