Package com.gooddata.connector
Class Status
- java.lang.Object
-
- com.gooddata.connector.Status
-
public class Status extends Object
Connector process status. Deserialization only.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classStatus.CodeEnum of connector process status codes
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCode()StringgetDescription()StringgetDetail()booleanisFailed()Returns true when the status means that the connector process failed.booleanisFinished()Returns true when the status means that the connector process has already finished (no matter if it was successful).StringtoString()
-
-
-
Method Detail
-
getCode
public String getCode()
-
getDetail
public String getDetail()
-
getDescription
public String getDescription()
-
isFinished
public boolean isFinished()
Returns true when the status means that the connector process has already finished (no matter if it was successful). NOTE: It also returns false in case of inability to resolve the code (e.g. API change)- Returns:
- true when the status means that the connector process has already finished, false otherwise
-
isFailed
public boolean isFailed()
Returns true when the status means that the connector process failed. NOTE: It also returns false in case of inability to resolve the code (e.g. API change)- Returns:
- true when the status means that the connector process failed, false otherwise
-
-