From afbe290a627d1b93b72dd5406dfac94fc4a0b91f Mon Sep 17 00:00:00 2001 From: Mark Rogers Date: Mon, 20 Apr 2009 14:19:37 +0000 Subject: [PATCH] ETHREEOH-797 error after deployment action git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@14016 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- .../web/bean/wcm/MonitorDeploymentDialog.java | 54 +++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/source/java/org/alfresco/web/bean/wcm/MonitorDeploymentDialog.java b/source/java/org/alfresco/web/bean/wcm/MonitorDeploymentDialog.java index dab957d1cb..0a055385ad 100644 --- a/source/java/org/alfresco/web/bean/wcm/MonitorDeploymentDialog.java +++ b/source/java/org/alfresco/web/bean/wcm/MonitorDeploymentDialog.java @@ -124,4 +124,58 @@ public class MonitorDeploymentDialog extends BaseDialogBean { return this.webProjectRef; } + + // MER experiment + protected int versionToDeploy; + protected String[] deployTo; + protected String store; + protected String deployMode; + protected String calledFromTaskDialog; + protected NodeRef websiteRef; + + /** + * Returns the remote servers to deploy to as an array + * + * @return String array of servers to deploy to + */ + public String[] getDeployTo() + { + return this.deployTo; + } + + /** + * Sets the list of remote servers to deploy to + * + * @param deployTo String array of servers to deploy to + */ + public void setDeployTo(String[] deployTo) + { + this.deployTo = deployTo; + } + + /** + * Returns the type of server to deploy to, either 'live' or 'test'. + * + * @return The type of server to deploy to + */ + public String getDeployMode() + { + return this.deployMode; + } + + /** + * @return The store being deployed + */ + public String getStore() + { + return this.store; + } + + /** + * @return The version of the snapshot to deploy + */ + public int getSnapshotVersion() + { + return this.versionToDeploy; + } }