Examples of RepositoryManager


Examples of ca.simplegames.micro.repositories.RepositoryManager

        log.info("Template engines:");
        templateEnginesManager = new TemplateEnginesManager(this, appConfig);

        log.info("Repositories:");
        // - Repositories
        repositoryManager = new RepositoryManager(this);

        // - Controllers
        controllerManager = new ControllerManager(this, (Map<String, Object>) appConfig.get("controllers"));

        // - Filters
View Full Code Here

Examples of com.caucho.server.repository.RepositoryManager

    _server = Server.getCurrent();

    if (_server == null)
      throw new ConfigException(L.l("resin:DeployService requires an active Server."));

    _repository = new RepositoryManager();

    setLinkStream(getBroker().getBrokerStream());
    getBroker().addActor(getActorStream());
  }
View Full Code Here

Examples of com.gitblit.manager.RepositoryManager

    IRuntimeManager runtimeManager = new RuntimeManager(settings).start();
    IPluginManager pluginManager = new PluginManager(runtimeManager).start();
    INotificationManager notificationManager = new NotificationManager(settings).start();
    IUserManager userManager = new UserManager(runtimeManager).start();
    IRepositoryManager repositoryManager = new RepositoryManager(runtimeManager, userManager).start();

    RedisTicketService service = new RedisTicketService(
        runtimeManager,
        pluginManager,
        notificationManager,
View Full Code Here

Examples of com.kolich.havalo.io.managers.RepositoryManager

        }
        logger__.info("Using repository root at: " + realPath.getAbsolutePath());
        final int maxFilenameLength = getMaxFilenameLength();
        logger__.info("Max repository object filename length: " +
            maxFilenameLength);
        return new RepositoryManager(realPath, maxFilenameLength);
    }
View Full Code Here

Examples of com.redhat.ceylon.cmr.api.RepositoryManager

                .optimize(true).generateSourceArchive(false)
                .addSrcDir(srcdir);
    }

    private TypeChecker typeChecker(Options opts) {
        final RepositoryManager repoman = CeylonUtils.repoManager()
                .userRepos(opts.getRepos())
                .outRepo(opts.getOutRepo())
                .buildManager();
        final TypeCheckerBuilder builder = new TypeCheckerBuilder()
            .moduleManagerFactory(new JsModuleManagerFactory("UTF-8"));
View Full Code Here

Examples of com.sun.enterprise.admin.servermgmt.RepositoryManager

        DomainConfig config = getDomainConfig(domainName);                        
        DomainsManager mgr = getFeatureFactory().getDomainsManager();   
        //domain validation upfront (i.e. before we prompt)                     
        mgr.validateDomain(config, true);
       
        masterPassword = getMasterPassword(new RepositoryManager(), config);
        //getPassword(optionName, allowedOnCommandLine, readPrefsFile, readPasswordOptionFromPrefs,
        //readMasterPasswordFile, mgr, config,
        //promptUser, confirm, validate)
        config.put(DomainConfig.K_MASTER_PASSWORD, masterPassword);
        mgr.validateMasterPassword(config);
View Full Code Here

Examples of com.sun.enterprise.registration.impl.RepositoryManager

        }
        return st.get(0).getInstanceURN();
    }
   
    public static void synchUUID() throws RegistrationException {
        RepositoryManager rm = new RepositoryManager(getServiceTagRegistry());
        String gfProductURN = getGFProductURN();
        String gfInstanceURN = rm.getInstanceURN(gfProductURN);
        if (gfInstanceURN == null || gfInstanceURN.length() == 0) {
            gfInstanceURN = ServiceTag.getNewInstanceURN();
            boolean updated = rm.setInstanceURN(gfProductURN,
                    gfInstanceURN);
            if (!updated) {
                // couldn't set instance urn in servicetag file. This shouldn't
                // happen, but if it does, ignore it and do not update the UC
                // file
View Full Code Here

Examples of eas.users.fredy.grid.prosumer.repository.RepositoryManager

       
        this.rand = rand;
       
        System.out.println("-PROSUMER "+this.id()+": Initialized, creating first scchedule...");
        sm_scheduleManager = new ScheduleManager();  
        rm_repManager = new RepositoryManager();
       
        this.sendFirstScheduleToManager();
       
        ss_stimuli = new StimuliStorage();
        hv_heuristicValues = new HeuristicValues();       
View Full Code Here

Examples of edu.pitt.ontology.ui.RepositoryManager

    }
  }

  private void doManage() {
    if(imanager == null){
      imanager = new RepositoryManager(RepositoryManager.TERMINOLOGIES_ONLY);
      imanager.start(repository);
      imanager.getFrame().setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
      imanager.getFrame().setLocation(frame.getLocation());
    }else{
      imanager.getFrame().setVisible(true);
View Full Code Here

Examples of edu.stanford.smi.protegex.owl.repository.RepositoryManager

 
  public static class MyOWLDatabaseKnowledgeBaseFactory extends OWLDatabaseKnowledgeBaseFactory {
    public KnowledgeBase createKnowledgeBase(Collection errors) {
      OWLDatabaseModel owlModel = new OWLDatabaseModel(this){
        public URI loadImportedAssertions(URI ontologyName) throws OntologyLoadException {
          RepositoryManager rm = getRepositoryManager();
          for(Repository r: rm.getGlobalRepositories()){
            if(r instanceof DatabaseRepository)
              rm.addProjectRepository(0, r);
          }
          return super.loadImportedAssertions(ontologyName);
        }
      };
      return owlModel;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.