Examples of PropertiesBuilder


Examples of com.clarkparsia.pellet.utils.PropertiesBuilder

  @Test
  public void testIncrementalTBoxDisjointRemove4() {
    // test that a disjoint axiom absorbed into domain axiom cannot
    // be removed

    Properties newOptions = new PropertiesBuilder().set( "USE_TRACING", "true" ).set(
        "USE_ROLE_ABSORPTION", "true" ).build();
    Properties savedOptions = PelletOptions.setOptions( newOptions );

    try {
      ATermAppl A = ATermUtils.makeTermAppl( "A" );
View Full Code Here

Examples of com.oracle.tools.runtime.PropertiesBuilder

      for (String arg : args) {
        schema.addArgument(arg);
      }
    }
    if (systemProperties != null) {
      schema.setSystemProperties(new PropertiesBuilder(systemProperties));
    }

    NativeJavaApplicationBuilder<SimpleJavaApplication, SimpleJavaApplicationSchema> builder =
        new NativeJavaApplicationBuilder<SimpleJavaApplication, SimpleJavaApplicationSchema>();
    builder.setRemoteDebuggingEnabled(remoteDebug);
View Full Code Here

Examples of org.apache.openejb.testng.PropertiesBuilder

        port = NetworkUtil.getNextAvailablePort();
    }

    @Configuration
    public Properties props() {
        return new PropertiesBuilder()
            .p("httpejbd.port", Integer.toString(port))
            .p(OpenEjbContainer.OPENEJB_EMBEDDED_REMOTABLE, "true")
            .build();
    }
View Full Code Here

Examples of org.apache.openejb.testng.PropertiesBuilder

        return new EjbJar();
    }

    @Configuration
    public Properties props() {
        return new PropertiesBuilder()
            .p("openejb.jdbc.datasource-creator", TomEEDataSourceCreator.class.getName())

            .p("txMgr", "new://TransactionManager?type=TransactionManager")
            .p("txMgr.txRecovery", "true")
            .p("txMgr.logFileDir", "target/test/xa/howl")
View Full Code Here

Examples of org.apache.openejb.testng.PropertiesBuilder

        port = NetworkUtil.getNextAvailablePort();
    }

    @Configuration
    public Properties props() {
        return new PropertiesBuilder()
            .p("httpejbd.port", Integer.toString(port))
            .p(OpenEjbContainer.OPENEJB_EMBEDDED_REMOTABLE, "true")
            .build();
    }
View Full Code Here

Examples of org.apache.openejb.testng.PropertiesBuilder

        port = NetworkUtil.getNextAvailablePort();
    }

    @Configuration
    public Properties props() {
        return new PropertiesBuilder()
            .p("httpejbd.port", Integer.toString(port))
            .p(OpenEjbContainer.OPENEJB_EMBEDDED_REMOTABLE, "true")
            .build();
    }
View Full Code Here

Examples of org.apache.openejb.testng.PropertiesBuilder

        port = NetworkUtil.getNextAvailablePort();
    }

    @Configuration
    public Properties props() {
        return new PropertiesBuilder().p("httpejbd.port", Integer.toString(port)).build();
    }
View Full Code Here

Examples of org.apache.openejb.testng.PropertiesBuilder

        BASE_URL = "http://localhost:" + port + "/foo/mapping/my-app/";
    }

    @Configuration
    public Properties props() {
        return new PropertiesBuilder()
            .p("httpejbd.port", Integer.toString(port))
            .p(OpenEjbContainer.OPENEJB_EMBEDDED_REMOTABLE, "true")
            .build();
    }
View Full Code Here

Examples of org.apache.openejb.testng.PropertiesBuilder

        port = NetworkUtil.getNextAvailablePort();
    }

    @Configuration
    public Properties props() {
        return new PropertiesBuilder()
            .p("httpejbd.port", Integer.toString(port))
            .p(OpenEjbContainer.OPENEJB_EMBEDDED_REMOTABLE, "true")
            .build();
    }
View Full Code Here

Examples of org.apache.openejb.testng.PropertiesBuilder

        return new EjbJar();
    }

    @Configuration
    public Properties props() {
        return new PropertiesBuilder()
            .p("openejb.jdbc.datasource-creator", BoneCPDataSourceCreator.class.getName())

            .p("txMgr", "new://TransactionManager?type=TransactionManager")
            .p("txMgr.txRecovery", "true")
            .p("txMgr.logFileDir", "target/test/xa/howl")
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.