package org.gcube.social_networking.socialnetworking.model.beans; public class WorkspaceNotificationMessage { private WorkspaceNotificationType type; private WorkspaceNotificationBean bean; public WorkspaceNotificationMessage(WorkspaceNotificationType type, WorkspaceNotificationBean bean) { super(); this.type = type; this.bean = bean; } public WorkspaceNotificationType getType() { return type; } public WorkspaceNotificationBean getBean() { return bean; } }