Class BundleInfo
- java.lang.Object
-
- org.apache.sling.testing.clients.osgi.BundleInfo
-
public class BundleInfo extends Object
-
-
Constructor Summary
Constructors Constructor Description BundleInfo(com.fasterxml.jackson.databind.JsonNode root)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCategory()intgetId()StringgetName()Map<String,String>getProperties()StringgetProperty(String key)Returns the value of a specific key in the bundleBundle.StatusgetStatus()StringgetSymbolicName()StringgetVersion()booleanisFragment()Returns the indicator if the bundle is a fragment
-
-
-
Constructor Detail
-
BundleInfo
public BundleInfo(com.fasterxml.jackson.databind.JsonNode root) throws ClientException- Throws:
ClientException
-
-
Method Detail
-
getId
public int getId()
- Returns:
- the bundle identifier
-
getName
public String getName()
- Returns:
- the bundle name
-
getVersion
public String getVersion()
- Returns:
- the bundle version
-
isFragment
public boolean isFragment()
Returns the indicator if the bundle is a fragment- Returns:
trueif bundle is a fragment,falseotherwise.
-
getStatus
public Bundle.Status getStatus()
- Returns:
- the bundle current state
-
getSymbolicName
public String getSymbolicName()
- Returns:
- the bundle symbolic name
-
getCategory
public String getCategory()
- Returns:
- the category of the bundle
-
getProperty
public String getProperty(String key)
Returns the value of a specific key in the bundle- Parameters:
key- the property to search- Returns:
- a specific bundle property
-
-