Examples of load()


Examples of org.apache.ode.bpe.util.BPEProperties.load()

        return eventDirector;
    }

    protected void doInit() throws Exception {
        BPEProperties props = BPEProperties.getCachedProperties();
        props.load(getClass().getClassLoader().getResourceAsStream(IM_ENGINE_PROPERTY_FILE_NAME));
        eventDirector = EventDirectorFactory.createEventDirector(props);
        super.doInit();
    }

}
View Full Code Here

Examples of org.apache.openejb.config.DeploymentLoader.load()

        // Load the module file
        DeploymentLoader loader = new DeploymentLoader();
        AppModule appModule;
        try {
            appModule = loader.load(new File(moduleFile.getName()));
        } catch (UnknownModuleTypeException e) {
            return null;
        } catch (UnsupportedModuleTypeException e) {
            return null;
        } catch (OpenEJBException e) {
View Full Code Here

Examples of org.apache.openejb.config.provider.ProviderManager.load()

    public static void main(final String[] args) throws Exception {
        final ProviderManager manager = new ProviderManager(new ServiceJarXmlLoader());

        final Set<String> seen = new HashSet<String>();

        final List<ServiceProvider> providers = manager.load("org.apache.openejb");
        for (final ServiceProvider provider : providers) {
            final List<String> types = provider.getTypes();
            final String name = guessBuilder(types);
            final String builder = name + "Builder";
View Full Code Here

Examples of org.apache.openejb.config.provider.ServiceJarXmlLoader.load()

            @Override
            public ServiceProvider load(final ID id) {

                { // try the regular loader
                    final ServiceProvider provider = loader.load(id);
                    if (provider != null) return provider;
                }

                if ("color".equalsIgnoreCase(id.getName())) {
                    final ServiceProvider color = new ServiceProvider(Color.class, "Color", "Resource");
View Full Code Here

Examples of org.apache.openejb.util.SuperProperties.load()

            for (final String s : d.properties()) {
                final int equal = s.indexOf('=');
                if (equal < s.length() - 1) {
                    final SuperProperties props = new SuperProperties();
                    try {
                        props.load(new ByteArrayInputStream(s.getBytes()));
                        for (final String key : props.stringPropertyNames()) {
                            if (!key.isEmpty()) {
                                dataSource.property(key, props.getProperty(key));
                            }
                        }
View Full Code Here

Examples of org.apache.openjpa.jdbc.sql.Result.load()

        Result res = union.execute(store, fetch);
        try {
            Object val = null;
            if (res.next())
                val = res.load(rels[res.indexOf()], store, fetch,
                    resJoins[res.indexOf()]);
            sm.storeObject(field.getIndex(), val);
        } finally {
            res.close();
        }
View Full Code Here

Examples of org.apache.openjpa.kernel.OpenJPAStateManager.load()

        }

        // after loading everything from result, load the rest of the
        // configured fields
        if (loaded)
            em.load(fetch);
    }

    /**
     * Return whether the given result indicates that the embedded value is
     * null.
 
View Full Code Here

Examples of org.apache.pdfbox.pdmodel.PDDocument.load()

            throws IOException, SQLException, AuthorizeException, COSVisitorException {
        PDDocument document = new PDDocument();
        PDDocument sourceDocument = new PDDocument();
        try {
            Item item = (Item) bitstream.getParentObject();
            sourceDocument = sourceDocument.load(bitstream.retrieve());
            PDPage coverPage = new PDPage(PDPage.PAGE_SIZE_LETTER);
            generateCoverPage(document, coverPage, item);
            addCoverPageToDocument(document, sourceDocument, coverPage);

            document.save(tempDir.getAbsolutePath() + "/bitstream.cover.pdf");
View Full Code Here

Examples of org.apache.pig.impl.io.PigFile.load()

        store.store(bag, new PigStorage(), pigContext);
        log.info("Done.");

        log.info("Running Load...");
        PigFile load = new PigFile(Util.encodeEscape(initialdata.toString()));
        DataBag loaded = load.load(new PigStorage(), pigContext);
        log.info("Done.");

        assertTrue(bag.size() == loaded.size());

        Iterator<Tuple> it1 = bag.iterator();
View Full Code Here

Examples of org.apache.pluto.container.PortletInvokerService.load()

        RenderRequest portletRequest = envService.createRenderRequest(requestContext, responseContext);
        RenderResponse portletResponse = envService.createRenderResponse(responseContext);

        try
        {
            invoker.load(requestContext, portletRequest, portletResponse);
            // Mark portlet interaction is completed: backend implementation can flush response state now
            responseContext.close();
        }
        finally
        {
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.