Class OperationResult
- java.lang.Object
-
- org.opendaylight.ovsdb.lib.operations.OperationResult
-
public class OperationResult extends Object
-
-
Constructor Summary
Constructors Constructor Description OperationResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getCount()
String
getDetails()
String
getError()
List<Row<GenericTableSchema>>
getRows()
UUID
getUuid()
void
setCount(int count)
void
setDetails(String details)
void
setError(String error)
void
setRows(List<Row<GenericTableSchema>> rows)
void
setUuid(List<String> uuidList)
String
toString()
-
-
-
Method Detail
-
getCount
public int getCount()
-
setCount
public void setCount(int count)
-
getUuid
public UUID getUuid()
-
getRows
public List<Row<GenericTableSchema>> getRows()
-
setRows
public void setRows(List<Row<GenericTableSchema>> rows)
-
getError
public String getError()
-
setError
public void setError(String error)
-
getDetails
public String getDetails()
-
setDetails
public void setDetails(String details)
-
-