Package org.lsst.ccs.services
Class AgentVersionsService.VersionCommands
java.lang.Object
org.lsst.ccs.services.AgentVersionsService.VersionCommands
- Enclosing class:
- AgentVersionsService
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionCommand to get the CCSVersions object for the current CCS Environment.Command to get the DistributionInfo object for thisAgent.
-
Constructor Details
-
VersionCommands
public VersionCommands()
-
-
Method Details
-
getAllDistributionInfo
@Command(description="Get the all the Agent\'s DistributionInfo.", type=QUERY, category=SYSTEM) public Map<String,DistributionInfo> getAllDistributionInfo() -
getAvailableDistributionInfoNames
-
getDistributionInfoByName
@Command(description="Get an Agent\'s DistributionInfo by name.", type=QUERY, category=SYSTEM) public DistributionInfo getDistributionInfoByName(String name) -
getCCSVersions
@Command(description="Get the CCS Versions for the current CCS Environment", type=QUERY, category=SYSTEM) public CCSVersions getCCSVersions()Command to get the CCSVersions object for the current CCS Environment.- Returns:
- The CCSVersions object for the current CCS Environment
-
getDistributionInfo
@Command(description="Get the Agent\'s DistributionInfo object.", type=QUERY, category=SYSTEM) public DistributionInfo getDistributionInfo()Command to get the DistributionInfo object for thisAgent. The DistributionInfo object contains version information about the distribution from which this Agent was launched.- Returns:
- The DistributionInfo for this
Agent.
-