/v3.2/nimbits-tds/src/com/nimbits/client/service/timespan/TimespanServiceAsync.java
http://nimbits-server.googlecode.com/ · Java · 22 lines · 7 code · 3 blank · 12 comment · 0 complexity · 1f774c63a37459de945130e6aefae6ff MD5 · raw file
- /*
- * Copyright (c) 2010 Tonic Solutions LLC.
- *
- * http://www.nimbits.com
- *
- *
- * Licensed under the GNU GENERAL PUBLIC LICENSE, Version 3.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
- *
- * http://www.gnu.org/licenses/gpl.html
- *
- * Unless required by applicable law or agreed to in writing, software distributed under the license is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
- */
- package com.nimbits.client.service.timespan;
- import com.google.gwt.user.client.rpc.AsyncCallback;
- import com.nimbits.client.model.timespan.InvalidTimespanException;
- import com.nimbits.client.model.timespan.Timespan;
- public interface TimespanServiceAsync {
- void createTimespan(final String start, final String end, final AsyncCallback<Timespan> async) throws InvalidTimespanException;
- }