social-networking-library-ws/src/main/java/org/gcube/portal/social/networking/ws/model/NotificationMessage.java

26 lines
408 B
Java

package org.gcube.portal.social.networking.ws.model;
public class NotificationMessage {
private NotificationType type;
private NotificationBean bean;
public NotificationMessage(NotificationType type, NotificationBean bean) {
super();
this.type = type;
this.bean = bean;
}
public NotificationType getType() {
return type;
}
public NotificationBean getBean() {
return bean;
}
}