mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-15 18:59:10 +00:00
19 lines
255 B
Java
19 lines
255 B
Java
package com.iluwatar;
|
|
|
|
/**
|
|
*
|
|
* Singleton class.
|
|
*
|
|
*/
|
|
public class IvoryTower {
|
|
|
|
private static IvoryTower instance = new IvoryTower();
|
|
|
|
private IvoryTower() {
|
|
}
|
|
|
|
public static IvoryTower getInstance() {
|
|
return instance;
|
|
}
|
|
}
|