Codota Logo
RuntimeEnvironmentInfo
Code IndexAdd Codota to your IDE (free)

How to use
RuntimeEnvironmentInfo
in
org.springframework.cloud.deployer.spi.core

Best Java code snippets using org.springframework.cloud.deployer.spi.core.RuntimeEnvironmentInfo (Showing top 8 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
BufferedReader b =
  • Codota IconInputStream in;new BufferedReader(new InputStreamReader(in))
  • Codota IconReader in;new BufferedReader(in)
  • Codota IconFile file;new BufferedReader(new FileReader(file))
  • Smart code suggestions by Codota
}
origin: org.springframework.cloud/spring-cloud-deployer-spi

  public RuntimeEnvironmentInfo build() {
    return new RuntimeEnvironmentInfo(spiClass, implementationName, implementationVersion, platformType,
        platformApiVersion, platformClientVersion, platformHostVersion, platformSpecificInfo);
  }
}
origin: org.springframework.cloud/spring-cloud-dataflow-server-core

final RuntimeEnvironmentDetails deployerInfo = new RuntimeEnvironmentDetails();
deployerInfo.setDeployerImplementationVersion(deployerEnvironmentInfo.getImplementationVersion());
deployerInfo.setDeployerName(deployerEnvironmentInfo.getImplementationName());
deployerInfo.setDeployerSpiVersion(deployerEnvironmentInfo.getSpiVersion());
deployerInfo.setJavaVersion(deployerEnvironmentInfo.getJavaVersion());
deployerInfo.setPlatformApiVersion(deployerEnvironmentInfo.getPlatformApiVersion());
deployerInfo.setPlatformClientVersion(deployerEnvironmentInfo.getPlatformClientVersion());
deployerInfo.setPlatformHostVersion(deployerEnvironmentInfo.getPlatformHostVersion());
deployerInfo.setPlatformSpecificInfo(deployerEnvironmentInfo.getPlatformSpecificInfo());
deployerInfo.setPlatformHostVersion(deployerEnvironmentInfo.getPlatformHostVersion());
deployerInfo.setPlatformType(deployerEnvironmentInfo.getPlatformType());
deployerInfo.setSpringBootVersion(deployerEnvironmentInfo.getSpringBootVersion());
deployerInfo.setSpringVersion(deployerEnvironmentInfo.getSpringVersion());
taskLauncherInfo.setDeployerImplementationVersion(taskLauncherEnvironmentInfo.getImplementationVersion());
taskLauncherInfo.setDeployerName(taskLauncherEnvironmentInfo.getImplementationName());
taskLauncherInfo.setDeployerSpiVersion(taskLauncherEnvironmentInfo.getSpiVersion());
taskLauncherInfo.setJavaVersion(taskLauncherEnvironmentInfo.getJavaVersion());
taskLauncherInfo.setPlatformApiVersion(taskLauncherEnvironmentInfo.getPlatformApiVersion());
taskLauncherInfo.setPlatformClientVersion(taskLauncherEnvironmentInfo.getPlatformClientVersion());
taskLauncherInfo.setPlatformHostVersion(taskLauncherEnvironmentInfo.getPlatformHostVersion());
taskLauncherInfo.setPlatformSpecificInfo(taskLauncherEnvironmentInfo.getPlatformSpecificInfo());
taskLauncherInfo.setPlatformHostVersion(taskLauncherEnvironmentInfo.getPlatformHostVersion());
taskLauncherInfo.setPlatformType(taskLauncherEnvironmentInfo.getPlatformType());
taskLauncherInfo.setSpringBootVersion(taskLauncherEnvironmentInfo.getSpringBootVersion());
taskLauncherInfo.setSpringVersion(taskLauncherEnvironmentInfo.getSpringVersion());
origin: org.springframework.cloud/spring-cloud-deployer-spi-test

/**
 * Tests support for DeployerEnvironmentInfo is implemented.
 */
@Test
public void testEnvironmentInfo() {
  RuntimeEnvironmentInfo info = appDeployer().environmentInfo();
  assertNotNull(info.getImplementationVersion());
  assertNotNull(info.getPlatformType());
  assertNotNull(info.getPlatformClientVersion());
  assertNotNull(info.getPlatformHostVersion());
}
origin: spring-cloud/spring-cloud-dataflow

deployerInfo.setDeployerImplementationVersion(deployerEnvironmentInfo.getImplementationVersion());
deployerInfo.setDeployerName(deployerEnvironmentInfo.getImplementationName());
deployerInfo.setDeployerSpiVersion(deployerEnvironmentInfo.getSpiVersion());
deployerInfo.setJavaVersion(deployerEnvironmentInfo.getJavaVersion());
deployerInfo.setPlatformApiVersion(deployerEnvironmentInfo.getPlatformApiVersion());
deployerInfo.setPlatformClientVersion(deployerEnvironmentInfo.getPlatformClientVersion());
deployerInfo.setPlatformHostVersion(deployerEnvironmentInfo.getPlatformHostVersion());
deployerInfo.setPlatformSpecificInfo(deployerEnvironmentInfo.getPlatformSpecificInfo());
deployerInfo.setPlatformHostVersion(deployerEnvironmentInfo.getPlatformHostVersion());
deployerInfo.setPlatformType(deployerEnvironmentInfo.getPlatformType());
deployerInfo.setSpringBootVersion(deployerEnvironmentInfo.getSpringBootVersion());
deployerInfo.setSpringVersion(deployerEnvironmentInfo.getSpringVersion());
RuntimeEnvironmentDetails taskLauncherInfo = new RuntimeEnvironmentDetails();
final RuntimeEnvironmentInfo taskLauncherEnvironmentInfo = taskLauncher.environmentInfo();
taskLauncherInfo.setDeployerImplementationVersion(taskLauncherEnvironmentInfo.getImplementationVersion());
taskLauncherInfo.setDeployerName(taskLauncherEnvironmentInfo.getImplementationName());
taskLauncherInfo.setDeployerSpiVersion(taskLauncherEnvironmentInfo.getSpiVersion());
taskLauncherInfo.setJavaVersion(taskLauncherEnvironmentInfo.getJavaVersion());
taskLauncherInfo.setPlatformApiVersion(taskLauncherEnvironmentInfo.getPlatformApiVersion());
taskLauncherInfo.setPlatformClientVersion(taskLauncherEnvironmentInfo.getPlatformClientVersion());
taskLauncherInfo.setPlatformHostVersion(taskLauncherEnvironmentInfo.getPlatformHostVersion());
taskLauncherInfo.setPlatformSpecificInfo(taskLauncherEnvironmentInfo.getPlatformSpecificInfo());
taskLauncherInfo.setPlatformHostVersion(taskLauncherEnvironmentInfo.getPlatformHostVersion());
taskLauncherInfo.setPlatformType(taskLauncherEnvironmentInfo.getPlatformType());
taskLauncherInfo.setSpringBootVersion(taskLauncherEnvironmentInfo.getSpringBootVersion());
taskLauncherInfo.setSpringVersion(taskLauncherEnvironmentInfo.getSpringVersion());
taskLauncherInfoList.add(taskLauncherInfo);
origin: org.springframework.cloud/spring-cloud-deployer-spi-test

/**
 * Tests support for DeployerEnvironmentInfo is implemented.
 */
@Test
public void testEnvironmentInfo() {
  RuntimeEnvironmentInfo info = taskLauncher().environmentInfo();
  assertNotNull(info.getImplementationVersion());
  assertNotNull(info.getPlatformType());
  assertNotNull(info.getPlatformClientVersion());
  assertNotNull(info.getPlatformHostVersion());
}
origin: spring-cloud/spring-cloud-deployer

/**
 * Tests support for DeployerEnvironmentInfo is implemented.
 */
@Test
public void testEnvironmentInfo() {
  RuntimeEnvironmentInfo info = taskLauncher().environmentInfo();
  assertNotNull(info.getImplementationVersion());
  assertNotNull(info.getPlatformType());
  assertNotNull(info.getPlatformClientVersion());
  assertNotNull(info.getPlatformHostVersion());
}
origin: spring-cloud/spring-cloud-deployer

  public RuntimeEnvironmentInfo build() {
    return new RuntimeEnvironmentInfo(spiClass, implementationName, implementationVersion, platformType,
        platformApiVersion, platformClientVersion, platformHostVersion, platformSpecificInfo);
  }
}
origin: spring-cloud/spring-cloud-deployer

/**
 * Tests support for DeployerEnvironmentInfo is implemented.
 */
@Test
public void testEnvironmentInfo() {
  RuntimeEnvironmentInfo info = appDeployer().environmentInfo();
  assertNotNull(info.getImplementationVersion());
  assertNotNull(info.getPlatformType());
  assertNotNull(info.getPlatformClientVersion());
  assertNotNull(info.getPlatformHostVersion());
}
org.springframework.cloud.deployer.spi.coreRuntimeEnvironmentInfo

Javadoc

Class used to communicate the runtime environment info.

Most used methods

  • getImplementationVersion
  • getPlatformClientVersion
  • getPlatformHostVersion
  • getPlatformType
  • <init>
  • getImplementationName
  • getJavaVersion
  • getPlatformApiVersion
  • getPlatformSpecificInfo
  • getSpiVersion
  • getSpringBootVersion
  • getSpringVersion
  • getSpringBootVersion,
  • getSpringVersion

Popular in Java

  • Reading from database using SQL prepared statement
  • setContentView (Activity)
  • getSystemService (Context)
  • onRequestPermissionsResult (Fragment)
  • BufferedReader (java.io)
    Reads text from a character-input stream, buffering characters so as to provide for the efficient re
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • Executors (java.util.concurrent)
    Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
  • JComboBox (javax.swing)
  • JTextField (javax.swing)
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now