/v3.2/nimbits-model/src/com/nimbits/client/model/value/Value.java

http://nimbits-server.googlecode.com/ · Java · 48 lines · 15 code · 15 blank · 18 comment · 0 complexity · 5950d7c3785ee24463ae9f755aa499c5 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.model.value;
  14. import java.io.Serializable;
  15. import java.util.Date;
  16. /**
  17. * Created by Benjamin Sautner
  18. * User: benjamin
  19. * Date: 4/16/11
  20. * Time: 2:27 PM
  21. */
  22. public interface Value extends Serializable {
  23. long getId();
  24. String getNote();
  25. double getLatitude();
  26. double getLongitude();
  27. long getPoint();
  28. double getValue();
  29. Date getTimestamp();
  30. AlertType getAlertState();
  31. void setAlertState(final AlertType alertState);
  32. String getData();
  33. }