public class PDFIntegrationServiceImpl implements PDFIntegrationService {
private static PDFIntegrationServiceImpl sInstance;
public static PDFIntegrationService getInstance() {
if (null == sInstance) {
sInstance = new PDFIntegrationServiceImpl();
}
return sInstance;
}
}