Searched refs:platform (Results 1 - 7 of 7) sorted by relevance
/glassfish-3.1.2/extras/embedded/common/bootstrap/src/main/java/org/glassfish/uberjar/bootstrap/ |
H A D | UberJarOSGiGlassFishRuntimeBuilder.java | 77 /* Constants.Platform platform = 80 BootstrapProperties.Platform platform = BootstrapProperties.Platform.valueOf(bsOptions.getPlatform()); 81 if(platform == null) { 82 platform = BootstrapProperties.Platform.valueOf(BootstrapProperties.Platform.Felix.name()); 84 logger.finer("platform = " + platform); 85 // TODO(Sahoo): Add support for generic OSGi platform 86 switch (platform) { 161 String platform = props.getProperty(BootstrapProperties.PLATFORM_PROPERTY_KEY); 162 if (platform [all...] |
/glassfish-3.1.2/core/bootstrap/src/main/java/com/sun/enterprise/glassfish/bootstrap/ |
H A D | StaticGlassFishRuntimeBuilder.java | 107 String platform = bsProps.getProperty(Constants.PLATFORM_PROPERTY_KEY); 108 return platform == null || Constants.Platform.Static.toString().equalsIgnoreCase(platform);
|
H A D | GlassFishMain.java | 68 String platform = ASMainHelper.whichPlatform(); 70 System.out.println("Launching GlassFish on " + platform + " platform"); 73 System.setProperty(Constants.PLATFORM_PROPERTY_KEY, platform); // TODO(Sahoo): Why is this a system property? 80 Properties ctx = ASMainHelper.buildStartupContext(platform, installRoot, instanceRoot, args);
|
H A D | ASMainHelper.java | 99 String platform = Constants.Platform.Felix.toString(); // default is Felix 109 platform = temp.trim(); 111 return platform; 365 static Properties buildStartupContext(String platform, File installRoot, File instanceRoot, String[] args) { argument 369 ctx.setProperty(Constants.PLATFORM_PROPERTY_KEY, platform); 558 static boolean isOSGiPlatform(String platform) { argument 559 Constants.Platform p = Constants.Platform.valueOf(platform); 616 Constants.Platform platform = 619 switch (platform) { 633 throw new RuntimeException("Unsupported platform " [all...] |
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/server/ |
H A D | AppServerStartup.java | 190 String platform = System.getProperty("GlassFish_Platform"); 191 if (platform==null) { 192 platform = "Embedded"; 283 version.getVersion(), version.getBuildVersion(), platform,
|
/glassfish-3.1.2/core/bootstrap/src/main/java/com/sun/enterprise/glassfish/bootstrap/osgi/ |
H A D | OSGiGlassFishRuntimeBuilder.java | 73 * <p/>It can't handle GenericOSGi platform, 175 * This builder can't handle GOSGi platform, because we read framework configuration from a framework 181 Constants.Platform platform = Constants.Platform.valueOf(platformStr); 182 switch (platform) { 189 // might be a plugged-in custom platform.
|
/glassfish-3.1.2/installer/src/cpp/share/launcher/ |
H A D | java_md.unix.c | 85 #error JNI_MD_SYSNAME must be defined for this platform
|
Completed in 576 milliseconds