/ParrotIM/src/controller/services/GenericConnection.java

http://parrot-im.googlecode.com/ · Java · 121 lines · 46 code · 35 blank · 40 comment · 0 complexity · 8a93c195698e765969e0ff79fb45d785 MD5 · raw file

  1. /* GenericConnection.java
  2. *
  3. * Programmed By:
  4. * Kevin Fahy
  5. *
  6. * Change Log:
  7. * 2009-June-27
  8. * First write. Created the interface so that it could be placed in
  9. * a field in Account Data. This interface would be implemented by
  10. * classes as a gateway to access XMPP, Twitter, and other
  11. * protocols. For example, an XMPPManager class would implement the
  12. * login() method, and would hold a copy of the XMPPConnection object
  13. * from the smack API. A TwitterManager class would do the same.
  14. * This interface will simplify the program flow, as we can execute
  15. * statements like, AccountData.disconnect() and it will work for any
  16. * protocol.
  17. *
  18. * Known Issues:
  19. * none
  20. *
  21. * Copyright (C) 2009 Pirate Captains
  22. *
  23. * License: GNU General Public License version 2.
  24. * Full license can be found in ParrotIM/LICENSE.txt.
  25. */
  26. package controller.services;
  27. import java.io.File;
  28. import java.net.URL;
  29. import java.util.ArrayList;
  30. import javax.swing.ImageIcon;
  31. import model.dataType.tempData.FriendTempData;
  32. import model.enumerations.ServerType;
  33. import model.enumerations.UserStateType;
  34. import org.jivesoftware.smack.XMPPException;
  35. import view.styles.ProgressMonitorScreen;
  36. /**
  37. * An interface the dictates the functions that connections can perform.
  38. * Specifically, this interface defines a set of operations on connections that
  39. * are common to all types of connections, be it XMPP, Twitter, ICQ, or others.
  40. */
  41. public interface GenericConnection {
  42. public void login(String userID, String password)
  43. throws BadConnectionException;
  44. public void disconnect();
  45. public void addFriend(String userID) throws BadConnectionException;
  46. public boolean removeFriend(String userID) throws BadConnectionException;
  47. public void changeStatus(UserStateType state, String status)
  48. throws BadConnectionException;
  49. public String retrieveStatus(String userID) throws BadConnectionException;
  50. public UserStateType retrieveState(String userID)
  51. throws BadConnectionException;
  52. public ArrayList<FriendTempData> retrieveFriendList()
  53. throws BadConnectionException;
  54. public void sendMessage(String toUserID, String message)
  55. throws BadConnectionException;
  56. /**
  57. *
  58. * changing typing state
  59. *
  60. * @param state
  61. * represent different typing state
  62. * @throws BadConnectionException
  63. * @throws XMPPException
  64. */
  65. public void setTypingState(int state, String userID)
  66. throws BadConnectionException, XMPPException;
  67. public ImageIcon getAvatarPicture(String userID) throws XMPPException;
  68. public void setAvatarPicture(byte[] bytes) throws XMPPException;
  69. public void setAvatarPicture(File file) throws XMPPException;
  70. public void setAvatarPicture(URL url) throws XMPPException;
  71. public ServerType getServerType();
  72. public int hashCode();
  73. public void sendFile(String filePath, String userID,
  74. ProgressMonitorScreen progress) throws XMPPException;
  75. public boolean isValidUserID(String userID);
  76. public void createRoom(String room) throws XMPPException;
  77. public void inviteFriend(String userID, String roomName)
  78. throws XMPPException;
  79. public boolean isConferenceChat();
  80. public void sendMultMessage(String message, String roomName)
  81. throws BadConnectionException;
  82. // For Twitter
  83. public boolean doesExist(String userID);
  84. public boolean isFollowing(String userID);
  85. public boolean isConnected();
  86. }