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

io.github.quickmsg.common.context.ContextHolder Maven / Gradle / Ivy

The newest version!
package io.github.quickmsg.common.context;

import io.github.quickmsg.common.config.Configuration;

/**
 * @author luxurong
 */
public class ContextHolder {

   private static  ReceiveContext context ;

   public static void setReceiveContext(ReceiveContext context){
       ContextHolder.context = context;
   }

    public static ReceiveContext getReceiveContext(){
        return ContextHolder.context;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy