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