Class VersionInfo
java.lang.Object
org.springframework.cloud.dataflow.rest.resource.about.VersionInfo
Provides version information about core libraries used.
- Author:
- Gunnar Hillert, Glenn Renfro
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetCore()
Retrieves the currentDependency
for the core Data Flow instance.Retrieves the currentDependency
for the Data Flow UI instance.Retrieves the currentDependency
for the implementation.getShell()
Retrieves the currentDependency
for the shell instance.void
setCore
(Dependency core) Establish theDependency
for the Data Flow core.void
setDashboard
(Dependency dashboard) Establish theDependency
for the dashboard.void
setImplementation
(Dependency implementation) Establish theDependency
for the implementation.void
setShell
(Dependency shell) Establish theDependency
for the shell.
-
Constructor Details
-
VersionInfo
public VersionInfo()Default constructor for serialization frameworks.
-
-
Method Details
-
getImplementation
Retrieves the currentDependency
for the implementation.- Returns:
Dependency
instance containing Implementation information.
-
setImplementation
Establish theDependency
for the implementation.- Parameters:
implementation
- theDependency
instance for the implementation.
-
getCore
Retrieves the currentDependency
for the core Data Flow instance.- Returns:
Dependency
instance containing core Data Flow information.
-
setCore
Establish theDependency
for the Data Flow core.- Parameters:
core
- theDependency
instance for the Data Flow core.
-
getDashboard
Retrieves the currentDependency
for the Data Flow UI instance.- Returns:
Dependency
instance containing Data Flow UI information.
-
setDashboard
Establish theDependency
for the dashboard.- Parameters:
dashboard
- theDependency
instance for the dashboard.
-
getShell
Retrieves the currentDependency
for the shell instance.- Returns:
Dependency
instance containing shell information.
-
setShell
Establish theDependency
for the shell.- Parameters:
shell
- theDependency
instance for the shell.
-