/* * */ package org.gcube.portlets.user.workspace.client.gridevent; import java.util.List; import org.gcube.portlets.user.workspace.client.interfaces.EventsTypeEnum; import org.gcube.portlets.user.workspace.client.interfaces.GuiEventInterface; import org.gcube.portlets.user.workspace.client.model.FileModel; import org.gcube.portlets.user.workspace.client.model.FileVersionModel; import org.gcube.portlets.user.workspace.client.view.versioning.WindowVersioning; import org.gcube.portlets.user.workspace.shared.WorkspaceVersioningOperation; import com.google.gwt.event.shared.GwtEvent; /** * The Class FileVersioningEvent. * * @author Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it * Feb 20, 2017 */ public class FileVersioningEvent extends GwtEvent implements GuiEventInterface{ public static Type TYPE = new Type(); private WorkspaceVersioningOperation workspaceVersioningOperation; private FileModel currentVersion; private List olderVersion; private WindowVersioning winVersioning; /** * Instantiates a new file versioning event. * * @param workspaceVersioningOperation the workspace versioning operation * @param currentVersion the current version * @param olderVersion the older version * @param winVersioning the win versioning */ public FileVersioningEvent(WorkspaceVersioningOperation workspaceVersioningOperation, FileModel currentVersion, List olderVersion, WindowVersioning winVersioning) { this.workspaceVersioningOperation = workspaceVersioningOperation; this.currentVersion = currentVersion; this.olderVersion = olderVersion; this.winVersioning = winVersioning; } /** * Gets the win versioning. * * @return the winVersioning */ public WindowVersioning getWinVersioning() { return winVersioning; } /** * Gets the current version. * * @return the currentVersion */ public FileModel getCurrentVersion() { return currentVersion; } /** * Sets the current version. * * @param currentVersion the currentVersion to set */ public void setCurrentVersion(FileModel currentVersion) { this.currentVersion = currentVersion; } /** * Gets the older version. * * @return the olderVersion */ public List getOlderVersion() { return olderVersion; } /** * Sets the workspace versioning operation. * * @param workspaceVersioningOperation the workspaceVersioningOperation to set */ public void setWorkspaceVersioningOperation(WorkspaceVersioningOperation workspaceVersioningOperation) { this.workspaceVersioningOperation = workspaceVersioningOperation; } /** * Sets the older version. * * @param olderVersion the olderVersion to set */ public void setOlderVersion(List olderVersion) { this.olderVersion = olderVersion; } /* (non-Javadoc) * @see com.google.gwt.event.shared.GwtEvent#getAssociatedType() */ @Override public Type getAssociatedType() { return TYPE; } /* (non-Javadoc) * @see com.google.gwt.event.shared.GwtEvent#dispatch(com.google.gwt.event.shared.EventHandler) */ @Override protected void dispatch(FileVersioningEventHandler handler) { handler.onFileVersioning(this); } /* (non-Javadoc) * @see org.gcube.portlets.user.workspace.client.interfaces.GuiEventInterface#getKey() */ @Override public EventsTypeEnum getKey() { return EventsTypeEnum.FILE_VERSIONING_HISTORY_EVENT; } /** * Sets the versioning operation. * * @param workspaceVersioningOperation the new versioning operation */ public void setVersioningOperation(WorkspaceVersioningOperation workspaceVersioningOperation) { this.workspaceVersioningOperation = workspaceVersioningOperation; } /** * Gets the versioning operation. * * @return the versioning operation */ public WorkspaceVersioningOperation getVersioningOperation() { return workspaceVersioningOperation; } /* (non-Javadoc) * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder builder = new StringBuilder(); builder.append("FileVersioningEvent [workspaceVersioningOperation="); builder.append(workspaceVersioningOperation); builder.append(", currentVersion="); builder.append(currentVersion); builder.append(", olderVersion="); builder.append(olderVersion); builder.append(", winVersioning="); builder.append(winVersioning); builder.append("]"); return builder.toString(); } }