ankur-singhal f214e0a285 Xstream - XML to Object
xml moved to resources folder, test cases fixed
2016-04-01 17:43:37 +05:30

19 lines
389 B
Java

package com.baeldung.initializer;
import com.thoughtworks.xstream.XStream;
public class SimpleXstreamInitializer {
private XStream xtreamInstance;
public XStream getXstreamInstance() {
if (xtreamInstance == null) {
synchronized (SimpleXstreamInitializer.class) {
if (xtreamInstance == null) {
xtreamInstance = new XStream();
}
}
}
return xtreamInstance;
}
}