Searched refs:remove (Results 1 - 25 of 586) sorted by relevance

1234567891011>>

/glassfish-3.1.2/ejb/javax.ejb/src/main/java/javax/ejb/
H A DEJBLocalHome.java47 * find, and remove EJB objects.
67 * the container does not allow the client to remove the object.
73 void remove(Object primaryKey) throws RemoveException, EJBException; method in interface:EJBLocalHome
H A DEJBHome.java49 * remove EJB objects.
65 * the container does not allow the client to remove the object.
70 void remove(Handle handle) throws RemoteException, RemoveException; method in interface:EJBHome
79 * the container does not allow the client to remove the object.
84 void remove(Object primaryKey) throws RemoteException, RemoveException; method in interface:EJBHome
H A DEJBLocalObject.java62 * interface defines the enterprise bean's create, finder, remove,
98 public void remove() throws RemoveException, EJBException; method in interface:EJBLocalObject
H A DEJBObject.java68 * interface defines the enterprise bean's create, finder, remove,
100 public void remove() throws RemoteException, RemoveException; method in interface:EJBObject
/glassfish-3.1.2/security/inmemory.jacc.provider/src/main/java/com/sun/enterprise/security/jacc/provider/
H A DSimplePolicyConfigurationFactory.java97 * @param remove A boolean value that establishes whether or not the
119 public PolicyConfiguration getPolicyConfiguration(String contextID, boolean remove) argument
121 return SimplePolicyConfiguration.getPolicyConfig(contextID, remove);
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/factory/
H A DSecurityManagerFactory.java69 * @param remove boolean indicating whether the corresponding SecurityManager
74 String ctxId, String name, boolean remove) {
82 if (remove) {
83 managerMap.remove(name);
85 iD2sMmap.remove(ctxId);
104 * @param remove boolean indicating whether the corresponding
109 String ctxId, boolean remove) {
119 if (remove) {
120 iD2sMmap.remove(ctxId);
136 * @param remove boolea
73 getManager(Map<String, Map<String, T>> iD2sMmap, String ctxId, String name, boolean remove) argument
108 getManagers(Map<String, Map<String, T>> iD2sMmap, String ctxId, boolean remove) argument
140 getManagersForApp(Map<String, Map<String, T>> iD2sMmap, Map<String, ArrayList<String>> app2iDmap, String appName, boolean remove) argument
174 getContextsForApp(Map<String, ArrayList<String>> app2iDmap, String appName, boolean remove) argument
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/
H A DDeployer.java100 * removed by <code>remove()</code>.
102 public static final String REMOVE_EVENT = "remove";
202 public void remove(String contextPath) throws IOException; method in interface:Deployer
214 * @param undeploy boolean flag to remove web application from server
223 public void remove(String contextPath, boolean undeploy) throws IOException; method in interface:Deployer
/glassfish-3.1.2/admin/monitor/src/main/java/org/glassfish/admin/monitor/
H A DFutureStatsProviders.java58 static void remove(StatsProviderInfo spInfo){ method in class:FutureStatsProviders
60 data.remove(spInfo);
63 // does NOT support the remove operation
/glassfish-3.1.2/web/weld-integration/src/main/java/org/glassfish/weld/ejb/
H A DSessionObjectReferenceImpl.java67 public void remove() { method in class:SessionObjectReferenceImpl
69 ejbContainerServices.remove(ejbRef);
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/resource/pool/waitqueue/
H A DPoolWaitQueue.java86 Object remove(); method in interface:PoolWaitQueue
89 * returns (does not remove) the first object (resource request) from the queue
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/
H A DEnumerationIterator.java68 public void remove() method in class:EnumerationIterator
/glassfish-3.1.2/persistence/cmp/utility/src/main/java/com/sun/jdo/spi/persistence/utility/
H A DWeakHashSet.java66 // remove garbage collected elements
84 public void remove ()
86 // remove the element from the HashSet
87 i.remove();
123 public boolean remove (Object o) method in class:WeakHashSet
125 boolean ret = super.remove(WeakElement.create(o));
150 super.remove(wv);
/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/data/
H A DApplicationRegistry.java73 public synchronized void remove(String name) { method in class:ApplicationRegistry
75 apps.remove(name);
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/
H A DMessageListener.java91 /** remove a connector-configProperty from the set
94 this.configProperties.remove(configProperty);
109 /** remove a configProperty from the set
112 this.requiredConfigProperties.remove(configProperty);
/glassfish-3.1.2/ejb/ejb-container/src/main/java/org/glassfish/ejb/security/factory/
H A DEJBSecurityManagerFactory.java165 CONTEXT_ID.remove(appName);
175 public <T> EJBSecurityManager getManager(String ctxId, String name, boolean remove) { argument
176 return getManager(SECURITY_MANAGERS, ctxId, name, remove);
180 getManagers(String ctxId, boolean remove) { argument
181 return getManagers(SECURITY_MANAGERS, ctxId, remove);
185 getManagersForApp(String appName, boolean remove) { argument
186 return getManagersForApp(SECURITY_MANAGERS, CONTEXT_IDS, appName, remove);
189 public <T> String[] getContextsForApp(String appName, boolean remove) { argument
190 return getContextsForApp(CONTEXT_IDS, appName, remove);
/glassfish-3.1.2/tests/embedded/cdi_ejb_jpa/src/main/java/org/glassfish/tests/embedded/cdi_ejb_jpa/
H A DTestBean.java67 em.remove(p);
72 em.remove(p);
/glassfish-3.1.2/tests/embedded/glassfish_resources_xml/src/main/java/org/glassfish/tests/embedded/cdi_ejb_jpa/
H A DTestBean.java67 em.remove(p);
72 em.remove(p);
/glassfish-3.1.2/admin/monitor/src/main/java/org/glassfish/flashlight/impl/
H A DMonitoringRuntimeDataRegistryImpl.java81 public void remove(String name) { method in class:MonitoringRuntimeDataRegistryImpl
83 children.remove(name);
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/web/integration/
H A DWebSecurityManagerFactory.java192 securityManagerPool.remove(contextId);
217 CONTEXT_ID.remove(appName);
257 boolean remove) {
258 return getManager(SECURITY_MANAGERS, ctxId, name, remove);
262 getManagers(String ctxId, boolean remove) { argument
263 return getManagers(SECURITY_MANAGERS, ctxId, remove);
267 getManagersForApp(String appName, boolean remove) { argument
269 remove);
273 remove) {
274 return getContextsForApp(CONTEXT_IDS, appName, remove);
256 getManager(String ctxId, String name, boolean remove) argument
272 getContextsForApp(String appName, boolean remove) argument
[all...]
/glassfish-3.1.2/ejb/ejb-internal-api/src/main/java/org/glassfish/ejb/api/
H A DEjbContainerServices.java66 public void remove(Object ejbRef); method in interface:EjbContainerServices
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/util/
H A DIterableAdapter.java77 public void remove() {
79 "remove not supported");
/glassfish-3.1.2/admin/jmx-remote/common/src/main/java/com/sun/enterprise/admin/jmx/remote/notification/
H A DSimpleQueue.java57 public Object remove() { method in class:SimpleQueue
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/
H A DVersionConsistencyCache.java69 * Removes entry based on pc and oid. If map is empty after remove,
74 public StateManager remove(Class pcType, Object oid); method in interface:VersionConsistencyCache
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/deploy/
H A DNamingResources.java633 * @param name Name of the EJB resource reference to remove
637 entries.remove(name);
641 ejb = ejbs.remove(name);
654 * @param name Name of the environment entry to remove
658 entries.remove(name);
662 environment = envs.remove(name);
675 * @param name Name of the EJB resource reference to remove
679 entries.remove(name);
683 localEjb = localEjbs.remove(name);
696 * @param name Name of the message destination resource reference to remove
[all...]
/glassfish-3.1.2/deployment/common/src/main/java/org/glassfish/deployment/common/
H A DDeploymentProperties.java359 remove(FORCE);
360 remove(RELOAD);
361 remove(CONTEXT_ROOT);
362 remove(PRECOMPILE_JSP);
363 remove(VERIFY);
364 remove(ENABLED);
365 remove(VIRTUAL_SERVERS);
366 remove(NAME);
367 remove(TYPE);
368 remove(ARCHIVE_NAM
[all...]

Completed in 300 milliseconds

1234567891011>>