1 package com.atlassian.plugin.osgi;
2
3 public class StaticHolder {
4 private static volatile Object value;
5
6 public static <V> void set(V value) {
7 StaticHolder.value = value;
8 }
9
10 public static <V> V get() {
11 return (V) value;
12 }
13 }