use of org.neo4j.android.common.ParcelableError in project neo4j-mobile-android by neo4j-contrib.
the class GraphDatabase method updateNode.
public void updateNode(ParcelableNode node) throws RemoteException, Neo4jServiceException {
ParcelableError err = new ParcelableError();
mProxy.updateNode(node, err);
Util.throwServiceExceptionIfError(err);
}
use of org.neo4j.android.common.ParcelableError in project neo4j-mobile-android by neo4j-contrib.
the class GraphDatabase method txFailure.
public void txFailure() throws RemoteException, Neo4jServiceException {
ParcelableError err = new ParcelableError();
mProxy.txFailure(err);
Util.throwServiceExceptionIfError(err);
}
use of org.neo4j.android.common.ParcelableError in project neo4j-mobile-android by neo4j-contrib.
the class GraphDatabase method createRelationship.
public long createRelationship(ParcelableRelationship relationship) throws RemoteException, Neo4jServiceException {
ParcelableError err = new ParcelableError();
long result = mProxy.createRelationship(relationship, err);
Util.throwServiceExceptionIfError(err);
return result;
}
use of org.neo4j.android.common.ParcelableError in project neo4j-mobile-android by neo4j-contrib.
the class GraphDatabase method deleteRelationship.
public void deleteRelationship(long id) throws RemoteException, Neo4jServiceException {
ParcelableError err = new ParcelableError();
mProxy.deleteRelationship(id, err);
Util.throwServiceExceptionIfError(err);
}
use of org.neo4j.android.common.ParcelableError in project neo4j-mobile-android by neo4j-contrib.
the class GraphDatabase method deleteNode.
public void deleteNode(long id) throws RemoteException, Neo4jServiceException {
ParcelableError err = new ParcelableError();
mProxy.deleteNode(id, err);
Util.throwServiceExceptionIfError(err);
}
Aggregations