Added User Feedback support.

This commit is contained in:
magenoxx 2012-01-26 22:13:44 +04:00
parent e50de69420
commit 3434dc1a97
14 changed files with 1065 additions and 149 deletions

View file

@ -0,0 +1,14 @@
package mage.server.services;
/**
* Responsible for gathering feedback from users and storing them in DB.
*
* @author noxx
*/
public interface FeedbackService {
/**
* Saves feedback.
*/
void feedback(String username, String title, String type, String message, String email, String host);
}