Package org.ogf.schemas.jsdl.posix

Examples of org.ogf.schemas.jsdl.posix.POSIXApplicationType


    public static final String PROCESSESPERHOST = "ProcessesPerHost";
    public static final String NUMBEROFPROCESSES = "NumberOfProcesses";
    public static final String THREADSPERHOST = "ThreadsPerHost";

    public static EnvironmentType addEnvVariable(JobDefinitionType def, String name, String value) {
        POSIXApplicationType posixApp = getOrCreatePOSIXApplication(def);
        EnvironmentType newEnv = posixApp.addNewEnvironment();
        newEnv.setName(name);
        newEnv.setStringValue(value);
        return newEnv;
    }
View Full Code Here

TOP

Related Classes of org.ogf.schemas.jsdl.posix.POSIXApplicationType

Copyright © 2018 www.massapicom. 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.