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

21 lines
430 B
Java

package org.gcube.portal.social.networking.ws.model;
public enum NotificationType {
AddFileToWS(AddFileNotificationBean.class),
AddFolderToWS(AddFolderNotificationBean.class);
Class<? extends NotificationBean> beanClass;
NotificationType(Class<? extends NotificationBean> beanClass){
this.beanClass = beanClass;
}
public Class<? extends NotificationBean> getNotificationClass(){
return this.beanClass;
}
}