Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteffen Pingel2014-01-13 17:39:28 +0000
committerSteffen Pingel2014-01-13 18:20:31 +0000
commit9cf9041d9f8f453ace9d724dc17d3730eaf72ad8 (patch)
tree64b3c803b5c9fa70a02393f13ed426043d246afd /org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn
parentae40f6d214cf4cee26d1bad19afb8a6bd059242b (diff)
downloadorg.eclipse.mylyn.tasks-9cf9041d9f8f453ace9d724dc17d3730eaf72ad8.tar.gz
org.eclipse.mylyn.tasks-9cf9041d9f8f453ace9d724dc17d3730eaf72ad8.tar.xz
org.eclipse.mylyn.tasks-9cf9041d9f8f453ace9d724dc17d3730eaf72ad8.zip
425458: [api] provide API in connector core to validate repositories
Change-Id: Ibe8909f301ff3da2cdac9c9383bd9132e4988c81 Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=425458
Diffstat (limited to 'org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn')
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/AbstractRepositoryConnector.java18
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/RepositoryInfo.java38
-rw-r--r--org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/RepositoryVersion.java38
3 files changed, 94 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/AbstractRepositoryConnector.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/AbstractRepositoryConnector.java
index 0acbe7520..65ba2e22d 100644
--- a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/AbstractRepositoryConnector.java
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/AbstractRepositoryConnector.java
@@ -615,4 +615,22 @@ public abstract class AbstractRepositoryConnector {
throw new UnsupportedOperationException();
}
+ /**
+ * Validates the connection to {@code repository} and returns information about the repository. This typically
+ * requires connecting to the repository.
+ * <p>
+ * Throws {@link UnsupportedOperationException} if not implemented by clients.
+ *
+ * @param repository
+ * the repository
+ * @param monitor
+ * a progress monitor
+ * @throws CoreException
+ * thrown in case the operation fails
+ * @since 3.11
+ */
+ public RepositoryInfo validateRepository(TaskRepository repository, IProgressMonitor monitor) throws CoreException {
+ throw new UnsupportedOperationException();
+ }
+
}
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/RepositoryInfo.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/RepositoryInfo.java
new file mode 100644
index 000000000..739978cba
--- /dev/null
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/RepositoryInfo.java
@@ -0,0 +1,38 @@
+/*******************************************************************************
+ * Copyright (c) 2014 Tasktop Technologies 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:
+ * Tasktop Technologies - initial API and implementation
+ *******************************************************************************/
+
+package org.eclipse.mylyn.tasks.core;
+
+import static com.google.common.base.Preconditions.checkNotNull;
+
+import org.eclipse.jdt.annotation.NonNull;
+
+/**
+ * Provides information about a {@link TaskRepository} such as the version of the repository.
+ *
+ * @noextend This class is not intended to be subclassed by clients.
+ * @see AbstractRepositoryConnector#validate(TaskRepository, org.eclipse.core.runtime.IProgressMonitor)
+ * @since 3.11
+ */
+public class RepositoryInfo {
+
+ private final RepositoryVersion version;
+
+ public RepositoryInfo(@NonNull RepositoryVersion version) {
+ this.version = checkNotNull(version);
+ }
+
+ @NonNull
+ public RepositoryVersion getVersion() {
+ return version;
+ }
+
+}
diff --git a/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/RepositoryVersion.java b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/RepositoryVersion.java
new file mode 100644
index 000000000..21f7297de
--- /dev/null
+++ b/org.eclipse.mylyn.tasks.core/src/org/eclipse/mylyn/tasks/core/RepositoryVersion.java
@@ -0,0 +1,38 @@
+/*******************************************************************************
+ * Copyright (c) 2014 Tasktop Technologies 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:
+ * Tasktop Technologies - initial API and implementation
+ *******************************************************************************/
+
+package org.eclipse.mylyn.tasks.core;
+
+import static com.google.common.base.Preconditions.checkNotNull;
+
+import org.eclipse.jdt.annotation.NonNull;
+
+/**
+ * Represents the version of a {@link TaskRepository}.
+ *
+ * @since 3.11
+ * @noextend This class is not intended to be subclassed by clients.
+ */
+// FIXME bug 425593 make this class more generic
+public class RepositoryVersion {
+
+ private final String version;
+
+ public RepositoryVersion(@NonNull String version) {
+ this.version = checkNotNull(version);
+ }
+
+ @Override
+ public String toString() {
+ return version;
+ }
+
+}

Back to the top