Skip to content

Instantly share code, notes, and snippets.

@ivanursul
Created December 28, 2014 14:08
Show Gist options
  • Save ivanursul/448f6f104c490b26ce89 to your computer and use it in GitHub Desktop.
Save ivanursul/448f6f104c490b26ce89 to your computer and use it in GitHub Desktop.
package org.ivanursul.guice.service;
import javax.inject.Singleton;
@Singleton
public class EmailService implements NotificationService {
public boolean sendMessage(final String msg, final String receipient) {
//some fancy code to send email
System.out.println("Email Message sent to "+receipient+" with message="+msg);
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment