1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package com.sun.nio.sctp;
17
18 @SuppressWarnings("all")
19 public class AbstractNotificationHandler<T> implements NotificationHandler<T> {
20 static {
21 UnsupportedOperatingSystemException.raise();
22 }
23
24 public HandlerResult handleNotification(AssociationChangeNotification notification, Object o) {
25 return null;
26 }
27
28 public HandlerResult handleNotification(Notification notification, Object o) {
29 return null;
30 }
31
32 public HandlerResult handleNotification(PeerAddressChangeNotification notification, Object o) {
33 return null;
34 }
35
36 public HandlerResult handleNotification(SendFailedNotification notification, Object o) {
37 return null;
38 }
39
40 public HandlerResult handleNotification(ShutdownNotification notification, Object o) {
41 return null;
42 }
43 }