social-service-model/src/main/java/org/gcube/social_networking/socialnetworking/model/beans/WorkspaceNotificationType.java

27 lines
670 B
Java

package org.gcube.social_networking.socialnetworking.model.beans;
public enum WorkspaceNotificationType {
/**
* use to notify a user she got a workspace item new in some of her workspace shared folder
*/
WP_ITEM_NEW(WSAddedItemNotificationBean.class),
/**
* use to notify a user he got a workspace folder shared
*/
WP_FOLDER_SHARE(WSSharedFolderNotificationBean.class);
Class<? extends WorkspaceNotificationBean> beanClass;
WorkspaceNotificationType(Class<? extends WorkspaceNotificationBean> beanClass){
this.beanClass = beanClass;
}
public Class<? extends WorkspaceNotificationBean> getNotificationClass(){
return this.beanClass;
}
}