source: java/main/src/main/java/com/framsticks/communication/StateCallback.java @ 77

Last change on this file since 77 was 77, checked in by psniegowski, 11 years ago

Add new java codebase.

File size: 327 bytes
Line 
1package com.framsticks.communication;
2
3import com.framsticks.util.StateFunctor;
4
5/**
6 * @author Piotr Sniegowski
7 */
8public abstract class StateCallback implements ResponseCallback, StateFunctor {
9        @Override
10        public void process(Response response) {
11                call(response.getOk() ? null : new Exception(response.getComment()));
12        }
13}
Note: See TracBrowser for help on using the repository browser.