The resource supports the following methods:
The GET method on this resource returns information about a specific server lifecycle job.
The response body returned includes a ServerJob entity.
This method can return the following links:
uri=/management/wls/{version}/jobs/server rel=parent
This method returns one of the Standard HTTP Status Codes.
This example uses the GET method to obtain information about a server lifecycle job.
Example Request
curl -v \ --user username:password \ -H X-Requested-By:MyClient \ -H Accept:application/json \ -X GET http://localhost:7001/management/wls/latest/jobs/server/id/Cluster-0-Server-1:_8_start
Example Response
HTTP/1.1 200 OK
Response Body:
{
"links": [{
"rel": "parent",
"uri": "http:\/\/localhost:7001\/management\/wls\/latest\/jobs\/server"
}],
"item": {
"operation": "start",
"status": "in progress",
"beginTime": 1390587038967,
"name": "_8_start",
"id": "Cluster-0-Server-1:_8_start",
"type": "server",
"description": "Starting Cluster-0-Server-1 server ...",
"serverName": "Cluster-0-Server-1"
}
}