@Retry(timeoutMsec=10000, intervalMsec=250)
public void testSpecificStartLevel() throws Exception {
// Verify that this bundle is only installed, as it's set to start level 99
setAdminCredentials();
final String path = "/system/console/bundles/org.apache.commons.collections.json";
final HttpUriRequest get = new HttpGet(baseUrl + path);
HttpResponse response = null;
try {
response = client.execute(get);
assertEquals("Expecting bundle status to be available at " + get.getURI(), 200, response.getStatusLine().getStatusCode());
assertNotNull("Expecting response entity", response.getEntity());
String encoding = "UTF-8";
if(response.getEntity().getContentEncoding() != null) {
encoding = response.getEntity().getContentEncoding().getValue();
}