Package org.exoplatform.container.multitenancy

Examples of org.exoplatform.container.multitenancy.CurrentTenantNotSetException


         {
            return l.getCurrentTenant();
         }
      }

      throw new CurrentTenantNotSetException("Current Tenant not set.");
   }
View Full Code Here


   @Override
   public Tenant getCurrentTenant() throws CurrentTenantNotSetException
   {
      // XXX we could return something predefined here (like 'default'), but it is not required
      // on Kernel level and will confuse developers in general case. 
      throw new CurrentTenantNotSetException("Current Tenant not set.");
   }
View Full Code Here

   public static class SupportedPlugin extends BaseComponentPlugin implements CurrentTenantLookup
   {
      @Override
      public Tenant getCurrentTenant() throws CurrentTenantNotSetException
      {
         throw new CurrentTenantNotSetException("not supported");
      }
View Full Code Here

TOP

Related Classes of org.exoplatform.container.multitenancy.CurrentTenantNotSetException

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.