Package com.openkm.openoffice.util

Examples of com.openkm.openoffice.util.Encryption


    private String directoryToStoreFiles;
    private String configFilename;
    private Encryption encryption;

    public ConfigFile() throws OKMException {
        encryption = new Encryption();
        directoryToStoreFiles = getDirectoryToStoreFiles();
        if (directoryToStoreFiles==null)  {
            directoryToStoreFiles = FileUtil.getWorkingPath() + OPENKM_FOLDER;
            File file = new File(directoryToStoreFiles);
            if (!file.exists()) {
View Full Code Here

TOP

Related Classes of com.openkm.openoffice.util.Encryption

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.