Class InfoWebService
- java.lang.Object
-
- org.apache.openmeetings.webservice.InfoWebService
-
@Service("infoWebService") @Produces("application/json") @Path("/info") public class InfoWebService extends ObjectThe Service contains methods to get info about the system and manifest- Author:
- solomax, sebawagner
-
-
Constructor Summary
Constructors Constructor Description InfoWebService()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description HealthgetHealth()Method to get health report for this OpenMeetings instanceStringgetManifest()InfogetVersion()Method to get current OpenMeetings version
-
-
-
Method Detail
-
getVersion
@GET @Path("/version") public Info getVersion()Method to get current OpenMeetings version- Returns:
- - version
-
getHealth
@GET @Path("/health") public Health getHealth()Method to get health report for this OpenMeetings instance- Returns:
- - health report
-
getManifest
@GET @Path("/manifest.webmanifest") @Produces("application/manifest+json") public String getManifest()
-
-