Package org.criticalfailure.torchlight.core.campaign.services.so

Examples of org.criticalfailure.torchlight.core.campaign.services.so.LibrarySO


        try {
            String path = PathUtils.buildPath(storagePath, "libraries", id.substring(0, 1), id.substring(0, 2), id);
            logger.trace("path: " + path);

            XMLDecoder dec = new XMLDecoder(new BufferedInputStream(new FileInputStream(path)));
            LibrarySO vo = (LibrarySO)dec.readObject();
            logger.trace("libraryVO: " + vo);

            dec.close();

            doSetStatus(CampaignStorageConstants.STORAGE_STATUS_ONLINE);
View Full Code Here

TOP

Related Classes of org.criticalfailure.torchlight.core.campaign.services.so.LibrarySO

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.