/v3.2/nimbits-tds/src/com/nimbits/client/service/facebook/FacebookServiceAsync.java

http://nimbits-server.googlecode.com/ · Java · 32 lines · 9 code · 5 blank · 18 comment · 0 complexity · 2b052bd9922c3109bb989ea2a759d1ff MD5 · raw file

  1. /*
  2. * Copyright (c) 2010 Tonic Solutions LLC.
  3. *
  4. * http://www.nimbits.com
  5. *
  6. *
  7. * 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
  8. *
  9. * http://www.gnu.org/licenses/gpl.html
  10. *
  11. * 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.
  12. */
  13. package com.nimbits.client.service.facebook;
  14. import com.google.gwt.user.client.rpc.AsyncCallback;
  15. import com.nimbits.client.exception.NimbitsException;
  16. import com.nimbits.client.model.email.EmailAddress;
  17. import java.io.UnsupportedEncodingException;
  18. /**
  19. * Created by bsautner
  20. * User: benjamin
  21. * Date: 4/13/11
  22. * Time: 12:29 PM
  23. */
  24. public interface FacebookServiceAsync {
  25. void facebookLogin(final String code, final AsyncCallback<EmailAddress> async) throws UnsupportedEncodingException, NimbitsException;
  26. void updateStatus(final String token, final String message, final String picture, final String link, final String name, final String captions, final String description, final AsyncCallback<String> async);
  27. }