Examples of Application


Examples of org.glassfish.tyrus.core.wsadl.model.Application

     *
     * @return application representing current set of deployed endpoints.
     */
    @Beta
    public Application getWsadlApplication() {
        Application application = new Application();
        for (TyrusEndpointWrapper wrapper : endpointWrappers) {
            org.glassfish.tyrus.core.wsadl.model.Endpoint endpoint = new org.glassfish.tyrus.core.wsadl.model.Endpoint();
            endpoint.setPath(wrapper.getServerEndpointPath());
            application.getEndpoint().add(endpoint);
        }

        return application;
    }
View Full Code Here

Examples of org.hive.container.lib.Application

            LoggerFactory.getLogger().fatal("Bad request! \nClass:" + request.getApplicationName() + "\nMethod:" + request.getMethodName() + "\nArgs:" + request.getArgs());
            return  null;
        }

        //  Get an instance of the requested application
        Application application = register.getInstance(request.getApplicationName());
        if (application == null) {
            LoggerFactory.getLogger().fatal(String.format("Can't load class %s.", request.getApplicationName()));
            return null;
        }

        // Invoke target method
        return application.invokeMethod(request.getMethodName(), request.getArgs().toArray());
    }
View Full Code Here

Examples of org.impalaframework.module.spi.Application

       
        Assert.notNull(servletContext);

        ModuleManagementFacade facade = getFacade();
        ModuleDefinitionSource source = getSource();
        Application application = getApplication(facade);

        ModuleOperationInput moduleOperationInput = new ModuleOperationInput(source, null, null);
       
        ModuleOperation operation = facade.getModuleOperationRegistry().getOperation(ModuleOperationConstants.ReloadRootModuleOperation);
        operation.execute(application, moduleOperationInput);
View Full Code Here

Examples of org.iplantc.agave.client.model.Application

     
      ApplicationSummary appSummary = apps.get(0);
     
      SingleApplicationResponse appResponse = api.get(appSummary.getId());
     
      Application app = appResponse.getResult();
      Assert.assertNotNull(app, "Named app not returned from api");
     
    } catch (ApiException e) {
      Assert.fail("Failed to query all apps", e);
    }
View Full Code Here

Examples of org.jboss.aerogear.unifiedpush.service.dashboard.Application

    private List<Application> wrapApplication(List<PushMessageInformation> pushMessageInformations) {
        final List<Application> applications = new ArrayList<Application>(pushMessageInformations.size());
        for (PushMessageInformation pushMessageInformation : pushMessageInformations) {
            String applicationName = pushApplicationDao.findByPushApplicationID(pushMessageInformation.getPushApplicationId()).getName();
            final Application application = new Application(applicationName, pushMessageInformation.getPushApplicationId(), pushMessageInformation.getTotalReceivers(), pushMessageInformation.getSubmitDate());
            applications.add(application);

        }
        return applications;
    }
View Full Code Here

Examples of org.jboss.dashboard.Application

    }

    public boolean install() {
        try {
            // Get the XML file.
            Application cm = Application.lookup();
            File pf = new File(cm.getBaseAppDirectory() + File.separator + importFile);
            if (!pf.exists()) {
                log.error("Cannot find file " + importFile + " for Workspace initial module.");
                return false;
            }
View Full Code Here

Examples of org.jdesktop.application.Application

        return trustedCerts;
    }

    private BatchEnrollmentGUIApp getApp() {
        final BatchEnrollmentGUIApp guiApp;
        final Application app = getApplication();
        if (app instanceof BatchEnrollmentGUIApp) {
            guiApp = (BatchEnrollmentGUIApp) app;
        } else {
            throw new RuntimeException("Wrong type of application");
        }
View Full Code Here

Examples of org.jfx4ee.adm4ee.business.configuration.entity.Application

            try {
                Set<String> installedApplications = getInstalledApplications();
                if (installedApplications != null) {
                    List<Application> apps = new ArrayList<>();
                    for (String applicationName : installedApplications) {
                        Application app = new Application(applicationName);
                        apps.add(app);
                    }
                    domain.setApplications(apps);
                }
            } catch (Exception e) {
View Full Code Here

Examples of org.jresearch.flexess.core.model.conf.Application

    //
    if (args.length == 0) {
      System.out.println("Enter a list of file paths or URIs that have content like this:");
      try {
        Resource resource = resourceSet.createResource(URI.createURI("http:///My.conf"));
        Application root = ConfFactory.eINSTANCE.createApplication();
        resource.getContents().add(root);
        resource.save(System.out, null);
      }
      catch (IOException exception) {
        exception.printStackTrace();
View Full Code Here

Examples of org.kc7bfi.jflac.metadata.Application

            metadata = streamInfo;
            pcmProcessors.processStreamInfo((StreamInfo)metadata);
        } else if (type == Metadata.METADATA_TYPE_SEEKTABLE) {
            metadata = new SeekTable(bitStream, length, isLast);
        } else if (type == Metadata.METADATA_TYPE_APPLICATION) {
            metadata = new Application(bitStream, length, isLast);
        } else if (type == Metadata.METADATA_TYPE_PADDING) {
            metadata = new Padding(bitStream, length, isLast);
        } else if (type == Metadata.METADATA_TYPE_VORBIS_COMMENT) {
            metadata = new VorbisComment(bitStream, length, isLast);
        } else if (type == Metadata.METADATA_TYPE_CUESHEET) {
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.