Package de.innovationgate.webgate.api.templates

Examples of de.innovationgate.webgate.api.templates.BeanWrapper


   * @see de.innovationgate.webgate.api.templates.SimpleContentSource#logout()
   */
  public void logout() {
   
    if (fetchMode == ONE_BEAN_PER_REQUEST) {
      BeanWrapper bean = _bean.get();
      if (bean == null) {
          return;
      }
     
      try {
        _creationHandler.destroyBean(bean.getNativeObject());
      }
      catch (IllegalArgumentException e) {
        WGFactory.getLogger().warn("Error destroying bean", e);
      }
      catch (IllegalAccessException e) {
View Full Code Here

TOP

Related Classes of de.innovationgate.webgate.api.templates.BeanWrapper

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.