// App specific variables appBeanName = "starterApp"; // Get the com path for the current custom application appComPath = getComPathForCustomAppDir(GetCurrentTemplatePath()); // Load the APP Base addSingleton("#appComPath#App", appBeanName); // Load the STARTER APP Controller component addSingleton("#appComPath#starterAppController", "starterAppController"); addConstructorDependency(appBeanName, "starterAppController"); // Load the STARTER APP Service component addSingleton("#appComPath#starterAppService", "starterAppService"); addConstructorDependency(appBeanName, "starterAppService"); // Load the STARTER APP DAO component addSingleton("#appComPath#starterAppDAO", "starterAppDAO"); addConstructorDependency(appBeanName, "starterAppDAO"); // Inject Dependecies for the Service and DAO into the Controller addConstructorDependency("starterAppController", "starterAppService"); addConstructorDependency("starterAppController", "starterAppDAO"); // Dependecies from ADF Lib addConstructorDependency(appBeanName, "scripts_1_0", "scripts"); addConstructorDependency(appBeanName, "cedata_1_0", "cedata");