Package org.auraframework.impl.context

Examples of org.auraframework.impl.context.AuraContextImpl


      Map<DefType, String> defaultPrefixes, Format format, Authentication access,
      JsonSerializationContext jsonContext,
      Map<ValueProviderType, GlobalValueProvider> globalProviders,
      DefDescriptor<? extends BaseComponentDef> appDesc,
      boolean isDebugToolEnabled) {
      AuraContext context = new AuraContextImpl(mode, masterRegistry, defaultPrefixes, format, access, jsonContext,
                globalProviders, isDebugToolEnabled);
        currentContext.set(context);
       
      context.setApplicationDescriptor(appDesc);
       
        return context;
    }
View Full Code Here


       
        return context;
    }

    protected AuraContext buildSystemContext(AuraContext original) {
        return new AuraContextImpl(original.getMode(),
                new MasterDefRegistryImpl((MasterDefRegistryImpl)original.getDefRegistry()),
                original.getDefaultPrefixes(), original.getFormat(), original.getAccess(),
                original.getJsonSerializationContext(), original.getGlobalProviders(), false);
    }
View Full Code Here

TOP

Related Classes of org.auraframework.impl.context.AuraContextImpl

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.