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

Examples of org.eclipse.orion.internal.server.core.metastore.SimpleMetaStoreUserPropertyCache.deleteUser()


    // add a property value and ensure it is in the cache
    userPropertyCache.add("property", "value", "user");
    assertEquals("user", userPropertyCache.readUserByProperty("property", "value", false, false));

    // delete the user and ensure it is no longer in the cache
    userPropertyCache.deleteUser("user");
    assertNull(userPropertyCache.readUserByProperty("property", "value", false, false));
  }

  @Test
  public void testDeleteUserProperty() throws CoreException {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.