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