Examples of removeEntry()


Examples of com.bea.x2003.x01.xmlbean.xsdownload.DownloadedSchemasDocument.DownloadedSchemas.removeEntry()

                        if (resource == _resourceForURL.get(urls[j]))
                            _resourceForURL.remove(urls[j]);
                    }
                }

                downloadedSchemas.removeEntry(i);
                i -= 1;
            }
        }
    }
View Full Code Here

Examples of com.ecyrd.jspwiki.auth.acl.Acl.removeEntry()

                }
            }
            for ( Iterator ix = entriesToRemove.iterator(); ix.hasNext(); )
            {
                AclEntry entry = (AclEntry)ix.next();
                acl.removeEntry( entry );
            }
            for ( Iterator ix = entriesToAdd.iterator(); ix.hasNext(); )
            {
                AclEntry entry = (AclEntry)ix.next();
                acl.addEntry( entry );
View Full Code Here

Examples of com.netflix.astyanax.WriteAheadLog.removeEntry()

                                        return null;
                                }
                            }, getRetryPolicy());

                    if (walEntry != null) {
                        wal.removeEntry(walEntry);
                    }
                    return result;
                }
                catch (ConnectionException exception) {
                    throw exception;
View Full Code Here

Examples of com.opensymphony.oscache.general.GeneralCacheAdministrator.removeEntry()

      {
          GeneralCacheAdministrator cacheInstance = (GeneralCacheAdministrator)object;
          synchronized(cacheInstance) //Back
          {
          //cacheInstance.flushEntry(key);
          cacheInstance.removeEntry(key);
          }
      }
    }
  }
 
View Full Code Here

Examples of com.volantis.shared.security.acl.mutable.MutableACL.removeEntry()

                    "than the owner");
        } catch (NotOwnerException expected) {
        }

        try {
            acl.removeEntry(attackerMock, entryMock);
            fail("Did not detect attempt to change by a principal other " +
                    "than the owner");
        } catch (NotOwnerException expected) {
        }
View Full Code Here

Examples of de.laures.cewolf.taglib.util.DatasetProductionTimeStore.removeEntry()

            // cached data available
            if (!producer.hasExpired(datasetProductionParams, produceTime)) {
                this.datasetProduceTime = produceTime.getTime();
                return;
            }
            dataCache.removeEntry(prodId, datasetProductionParams);
        }
        datasetProduceTime = System.currentTimeMillis();
    }

}
View Full Code Here

Examples of java.lang.ClassValue.ClassValueMap.removeEntry()

     * @param type the type whose class value must be removed
     * @throws NullPointerException if the argument is null
     */
    public void remove(Class<?> type) {
        ClassValueMap map = getMap(type);
        map.removeEntry(this);
    }

    // Possible functionality for JSR 292 MR 1
    /*public*/ void put(Class<?> type, T value) {
        ClassValueMap map = getMap(type);
View Full Code Here

Examples of java.util.Map.removeEntry()

      {
          GeneralCacheAdministrator cacheInstance = (GeneralCacheAdministrator)object;
          synchronized(cacheInstance) //Back
          {
          //cacheInstance.flushEntry(key);
          cacheInstance.removeEntry(key);
          }
      }
    }
  }
 
View Full Code Here

Examples of net.aufdemrand.denizen.scripts.queues.ScriptQueue.removeEntry()

            ScriptEntry keeping = null;

            for (int x = 0; x < possibilities; x++) {

                if (x != selected)
                    queue.removeEntry(0);

                else {
                    dB.echoDebug(scriptEntry, "...selected '" + queue.getEntry(0).getCommandName() + ": "
                        + queue.getEntry(0).getArguments() + "'.");
                    keeping = queue.getEntry(0);
View Full Code Here

Examples of net.aufdemrand.denizen.scripts.queues.ScriptQueue.removeEntry()

                else {
                    dB.echoDebug(scriptEntry, "...selected '" + queue.getEntry(0).getCommandName() + ": "
                        + queue.getEntry(0).getArguments() + "'.");
                    keeping = queue.getEntry(0);
                    queue.removeEntry(0);
                }

            }

            queue.injectEntry(keeping, 0);
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.