Add all 23 GoF design pattern implementations
This commit is contained in:
13
01-creational/factory-method/SmsNotification.java
Normal file
13
01-creational/factory-method/SmsNotification.java
Normal file
@@ -0,0 +1,13 @@
|
||||
package factorymethod;
|
||||
|
||||
public class SmsNotification implements Notification {
|
||||
|
||||
@Override
|
||||
public void send(String recipient, String message) {
|
||||
// In production: use Twilio SDK
|
||||
System.out.printf(" [SMS] To: %s | Text: %s%n", recipient, message);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getType() { return "SMS"; }
|
||||
}
|
||||
Reference in New Issue
Block a user