-
Notifications
You must be signed in to change notification settings - Fork 0
/
sakai-28x.patch
96 lines (90 loc) · 3.32 KB
/
sakai-28x.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
diff --git a/impl/src/java/org/sakaiproject/contentreview/impl/ContentReviewFederatedServiceImpl.java b/impl/src/java/org/sakaiproject/contentreview/impl/ContentReviewFederatedServiceImpl.java
index 87e250e..4f043a4 100644
--- a/impl/src/java/org/sakaiproject/contentreview/impl/ContentReviewFederatedServiceImpl.java
+++ b/impl/src/java/org/sakaiproject/contentreview/impl/ContentReviewFederatedServiceImpl.java
@@ -129,31 +129,6 @@ public class ContentReviewFederatedServiceImpl implements ContentReviewService {
provider.checkForReports();
}
- public void createAssignment(String arg0, String arg1, Map arg2)
- throws SubmissionException, TransientSubmissionException {
- ContentReviewService provider = getSelectedProvider();
- if (provider != null)
- provider.createAssignment(arg0,arg1,arg2);
-
- }
-
- public List<ContentReviewItem> getAllContentReviewItems(String arg0,
- String arg1) throws QueueException, SubmissionException,
- ReportException {
- ContentReviewService provider = getSelectedProvider();
- if (provider != null)
- return provider.getAllContentReviewItems(arg0,arg1);
- return null;
- }
-
- public Map getAssignment(String arg0, String arg1)
- throws SubmissionException, TransientSubmissionException {
- ContentReviewService provider = getSelectedProvider();
- if (provider != null)
- return provider.getAssignment(arg0,arg1);
- return null;
- }
-
public Date getDateQueued(String arg0) throws QueueException {
ContentReviewService provider = getSelectedProvider();
if (provider != null)
@@ -290,12 +265,6 @@ public class ContentReviewFederatedServiceImpl implements ContentReviewService {
provider.resetUserDetailsLockedItems(arg0);
}
- public String getReviewError(String contentId){
- ContentReviewService provider = getSelectedProvider();
- if (provider != null)
- return provider.getReviewError(contentId);
- return null;
- }
@Override
public int getReviewScore(String arg0) throws QueueException,
diff --git a/pom.xml b/pom.xml
index 1fe48e1..a4fc3c9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -8,10 +8,10 @@
<packaging>pom</packaging>
<parent>
+ <artifactId>base</artifactId>
<groupId>org.sakaiproject</groupId>
- <artifactId>master</artifactId>
- <version>11-SNAPSHOT</version>
- <relativePath>../master/pom.xml</relativePath>
+ <version>2.8-SNAPSHOT</version>
+ <relativePath>../../pom.xml</relativePath>
</parent>
<modules>
@@ -25,6 +25,28 @@
<dependencyManagement>
<dependencies>
+ <dependency>
+ <groupId>org.sakaiproject.contentreview</groupId>
+ <artifactId>contentreview-model-api</artifactId>
+ <version>2.8.9-SNAPSHOT</version>
+ <scope>provided</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.sakaiproject.contentreview</groupId>
+ <artifactId>contentreview-service-api</artifactId>
+ <version>2.8.9-SNAPSHOT</version>
+ </dependency>
+ <dependency>
+ <groupId>org.sakaiproject.kernel</groupId>
+ <artifactId>sakai-kernel-api</artifactId>
+ <version>1.2.9</version>
+ </dependency>
+ <dependency>
+ <groupId>org.sakaiproject.kernel</groupId>
+ <artifactId>sakai-component-manager</artifactId>
+ <version>1.2.9</version>
+ </dependency>
+
<!-- the API is seperately versioned from the impl -->
<dependency>
<groupId>net.sf.json-lib</groupId>