Guest User

Untitled

a guest
Apr 22nd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. public class SingletonInstance implements Serializable {
  2.  
  3. public final Long serialVersionUID=-1L;
  4.  
  5. private final static SingletonInstance INSTANCE = new SingletonInstance();
  6.  
  7. private SingletonInstance(){
  8. }
  9.  
  10. public static SingletonInstance getInstance(){
  11. return INSTANCE;
  12. }
  13.  
  14. }
Add Comment
Please, Sign In to add comment