Package org.eclipse.orion.internal.server.core.metastore

Examples of org.eclipse.orion.internal.server.core.metastore.SimpleMetaStore


    }
  }

  private void initializeMetaStore() {
    try {
      metastore = new SimpleMetaStore(OrionConfiguration.getRootLocation().toLocalFile(EFS.NONE, null));
      List<String> keys = new ArrayList<String>();
      keys.add(UserConstants2.USER_NAME);
      metastore.registerUserProperties(keys);
    } catch (CoreException e) {
      throw new RuntimeException("Cannot initialize MetaStore", e); //$NON-NLS-1$
View Full Code Here

TOP

Related Classes of org.eclipse.orion.internal.server.core.metastore.SimpleMetaStore

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.