Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'framework/com.atlassian.connector.eclipse.crucible.ui/src/com/atlassian/connector/eclipse/internal/crucible/core/CrucibleConstants.java')
-rw-r--r--framework/com.atlassian.connector.eclipse.crucible.ui/src/com/atlassian/connector/eclipse/internal/crucible/core/CrucibleConstants.java47
1 files changed, 47 insertions, 0 deletions
diff --git a/framework/com.atlassian.connector.eclipse.crucible.ui/src/com/atlassian/connector/eclipse/internal/crucible/core/CrucibleConstants.java b/framework/com.atlassian.connector.eclipse.crucible.ui/src/com/atlassian/connector/eclipse/internal/crucible/core/CrucibleConstants.java
new file mode 100644
index 0000000..dd3b890
--- /dev/null
+++ b/framework/com.atlassian.connector.eclipse.crucible.ui/src/com/atlassian/connector/eclipse/internal/crucible/core/CrucibleConstants.java
@@ -0,0 +1,47 @@
+/*******************************************************************************
+ * Copyright (c) 2009 Atlassian and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Atlassian - initial API and implementation
+ ******************************************************************************/
+
+package com.atlassian.connector.eclipse.internal.crucible.core;
+
+/**
+ * This is a class to encapsulate all of the constants used in the crucible connector
+ *
+ * @author Shawn Minto
+ */
+public final class CrucibleConstants {
+
+ public static final String REVIEW_ACTIVE_SYSTEM_PROPERTY = "com.atlassian.connector.eclipse.crucible.ui.review.active";
+
+ public static final String CRUCIBLE_EDITOR_PAGE_ID = "com.atlassian.connector.eclipse.crucible.review.editor";
+
+ private CrucibleConstants() {
+ // ignore
+ }
+
+ public static final String CLASSIFICATION_CUSTOM_FIELD_KEY = "classification";
+
+ public static final String CRUCIBLE_URL_START = "cru/";
+
+ public static final String CUSTOM_FILER_START = CRUCIBLE_URL_START + "?filter=custom&";
+
+ public static final String KEY_FILTER_ID = "FilterId";
+
+ public static final String PREDEFINED_FILER_START = CRUCIBLE_URL_START + "?filter=";
+
+ public static final String RANK_CUSTOM_FIELD_KEY = "rank";
+
+ public static final String HAS_CHANGED_TASKDATA_KEY = "hasChanged";
+
+ public static final String CHANGED_HASH_CODE_KEY = "hasChangedHash";
+
+ public static final String HAS_NOTIFIED_NEW = "hasNotifiedNew";
+
+}

Back to the top