Searched refs:threadPools (Results 1 - 6 of 6) sorted by relevance

/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/admin/commands/
H A DDeleteThreadpool.java112 ThreadPools threadPools = config.getThreadPools();
114 if(!isThreadPoolExists(threadPools)) {
155 }, threadPools);
166 private boolean isThreadPoolExists(ThreadPools threadPools) { argument
168 for (ThreadPool pool : threadPools.getThreadPool()) {
H A DCreateThreadpool.java130 ThreadPools threadPools = config.getThreadPools();
132 for (ThreadPool pool: threadPools.getThreadPool()) {
158 }, threadPools);
H A DListThreadpools.java106 ThreadPools threadPools = config.getThreadPools();
108 List<ThreadPool> poolList = threadPools.getThreadPool();
/glassfish-3.1.2/orb/orb-connector/src/main/java/org/glassfish/enterprise/iiop/util/
H A DIIOPUtils.java90 private Collection<ThreadPool> threadPools; field in class:IIOPUtils
110 threadPools = new ArrayList<ThreadPool>();
116 threadPools.add(pool);
167 return threadPools;
/glassfish-3.1.2/admin/config-api/src/main/java/org/glassfish/config/support/
H A DGrizzlyConfigSchemaMigrator.java167 final ThreadPools threadPools = currentConfig.getThreadPools();
169 for (ThreadPool pool : threadPools.getThreadPool()) {
183 }, threadPools);
325 final ThreadPools threadPools = param.createChild(ThreadPools.class);
326 param.setThreadPools(threadPools);
327 return threadPools;
608 private void migrateThreadPools(ThreadPools threadPools) throws TransactionFailure { argument
609 final Config config = threadPools.getParent(Config.class);
611 threadPools.getThreadPool().addAll(networkListeners.getThreadPool());
646 ThreadPools threadPools
[all...]
/glassfish-3.1.2/admin/config-api/src/test/java/com/sun/enterprise/configapi/tests/
H A DUpgradeTest.java78 public void threadPools() { method in class:UpgradeTest

Completed in 16 milliseconds