try {
String path = PathUtils.buildPath(storagePath, "settings", id);
logger.trace("path: " + path);
XMLDecoder dec = new XMLDecoder(new BufferedInputStream(new FileInputStream(path)));
SettingSO vo = (SettingSO)dec.readObject();
logger.trace("settingVO: " + vo);
dec.close();
doSetStatus(CampaignStorageConstants.STORAGE_STATUS_ONLINE);