Package com.sun.enterprise.admin.event

Examples of com.sun.enterprise.admin.event.AdminEventListenerException


            ApplicationsMgr appSynchMgr = synchCtx.getApplicationsMgr();
             
            // synchronizes an application
            appSynchMgr.synchronize(event.getJ2EEComponentName());
        } catch (SynchronizationException ex) {
            throw new AdminEventListenerException(ex);
        }
    }
View Full Code Here


            service.handleActionAdd(rule, configContext);
                    }
    }
            }
        } catch (Exception ex) {
           throw new AdminEventListenerException(ex);
       
    }
View Full Code Here

                 }
            }
                    
      
        } catch (Exception ex) {
           throw new AdminEventListenerException(ex);
        }
    }
View Full Code Here

                        service.deleteAction(ruleName);
        }
                }
            }
        }  catch( Exception ex){
           throw new AdminEventListenerException(ex);
        }     
    }    
View Full Code Here

        logger.info(CMBStrings.get("cmb.ee.handleCreate", event.getElementId(), event.EVENT_TYPE));
        //synchronize the bits of the classes and ask the super implementation to load the mbean
        try {
            synchronizeMBeanClasses(event);
        } catch (final Exception e) {
            throw new AdminEventListenerException(e);
        }
        super.handleCreate(event);
    }
View Full Code Here

                secSupp.synchronizeKeyFile(event.getConfigContext(), realmName);
            }

            realm.refresh();
        } catch(Exception ex) {
            throw new AdminEventListenerException(ex);
        }
    }
View Full Code Here

    public void authRealmCreated(AuthRealmEvent event)
             throws AdminEventListenerException {
        try {
            createRealm(event);
        } catch(Exception ex) {
            throw new AdminEventListenerException(ex);
        }
    }
View Full Code Here

             throws AdminEventListenerException {
        try {
            //only unload the realm, keep any auxiliary file for sanity
            Realm.unloadInstance(event.getAuthRealmName());
        } catch(Exception ex) {
            throw new AdminEventListenerException(ex);
        }
    }
View Full Code Here

             throws AdminEventListenerException {
        try {
            //XXX replace with a new realm, need to revisit in JSR 196
            createRealm(event);
        } catch(Exception ex) {
            throw new AdminEventListenerException(ex);
        }
    }
View Full Code Here

            }
           
            webContainer.updateAccessLog(config.getHttpService());

        } catch (Exception e) {
           throw new AdminEventListenerException(e);
        }
    }
View Full Code Here

TOP

Related Classes of com.sun.enterprise.admin.event.AdminEventListenerException

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.