Package br.gov.frameworkdemoiselle.configuration

Examples of br.gov.frameworkdemoiselle.configuration.ConfigurationException


        Redirector.redirect(getConfig().getRedirectAfterLogin(), getSavedParams());
      }

    } catch (PageNotFoundException cause) {
      if (redirectedFromConfig) {
        throw new ConfigurationException( bundle.getString("after-login-page-not-found",cause.getViewId()) , cause);
      } else {
        throw cause;
      }

    } finally {
View Full Code Here


      if (getConfig().isRedirectEnabled()) {
        Redirector.redirect(getConfig().getRedirectAfterLogout());
      }

    } catch (PageNotFoundException cause) {
      throw new ConfigurationException( bundle.getString("after-logout-page-not-found",cause.getViewId()) , cause);

    } finally {
      try {
        Beans.getReference(HttpSession.class).invalidate();
      } catch (IllegalStateException e) {
View Full Code Here

TOP

Related Classes of br.gov.frameworkdemoiselle.configuration.ConfigurationException

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.