Last updated: January 21, 2026
System Management API
{ urn:com.soa.admin.service.system.jaxrs } SystemService
A REST API that provides access to system services.
GETGet system info
Reponse
Produces application/xmlapplication/json
200
Success
systemInfo
systemInfo {
lifecycleState( string )
usedMemory( long )
contextPath( string )
version( string )
authorizedToRestart( boolean )
containerService( boolean )
security( securityConfiguration )
totalMemory( long )
containerName( string )
lastStartTime( dateTime )
links( Collection of link )
startTime( long )
lastStart( string )
freeMemory( long )
embedded( boolean )
properties( Collection of nameValuePair )
}
securityConfiguration {
providers( Collection of securityProvider )
}
securityProvider {
name( string )
version( string )
info( string )
}
link {
rel( string )
href( string )
title( string )
type( string )
}
nameValuePair {
name( string )
value( string )
}
GET/reportGet system report
GET/gcPerform garbage collection
Perform garbage collection.
Reponse
GET/threadsGet thread info
Get information on the curently running threads.
Reponse
Produces application/xmlapplication/json
200
Success
threadInfo
threadInfo {
stack( Collection of string )
name( string )
id( long )
state( string )
priority( int )
group( string )
}
GET/configGet configuration info
Get the current configuration from the Config Admin service.
Reponse
Produces application/xmlapplication/json
GET/bundlesGet bundle info
Get information on the deployed bundles.
Reponse
Produces application/xmlapplication/json
200
Success
bundleInfo
bundleInfo {
lifecycle( string )
name( string )
links( Collection of link )
location( string )
id( long )
lastModified( string )
state( string )
version( string )
}
link {
rel( string )
href( string )
title( string )
type( string )
}
POST/refreshRefresh packages
Perform a refresh packages operation.
GET/servicesGet service info
Get information on the active OSGi services.
Reponse
Produces application/xmlapplication/json
GET/bundles/{id}Get bundle detail
Get detailed information on a deployed bundle.
Parameters
Name
Type
Description
Model
id
path
The bundle ID.
string
Reponse
Produces application/xmlapplication/json
200
Success
bundleInfo
bundleInfo {
lifecycle( string )
name( string )
links( Collection of link )
location( string )
id( long )
lastModified( string )
state( string )
version( string )
}
link {
rel( string )
href( string )
title( string )
type( string )
}
GET/threads/{name}Get thread detail
Get detailed information on a thread.
Parameters
Name
Type
Description
Model
name
path
The thread name.
string
Reponse
Produces application/xmlapplication/json
200
Success
threadInfo
threadInfo {
stack( Collection of string )
name( string )
id( long )
state( string )
priority( int )
group( string )
}
GET/bundles/{id}/eventsGet bundle events
Parameters
Name
Type
Description
Model
id
path
The bundle ID.
string
Reponse
Produces application/xmlapplication/json
GET/bundles/{id}/servicesGet bundle services
Get the set of services provided by a bundle.
Parameters
Name
Type
Description
Model
id
path
The bundle ID.
string
Reponse
Produces application/xmlapplication/json