Skip to content

Commit e7c8170

Browse files
authored
SAK-23981 Basic LTI entity providers are missing documentation (sakaiproject#12712)
1 parent cb9080b commit e7c8170

23 files changed

+18
-34
lines changed

basiclti/basiclti-blis/src/webapp/WEB-INF/applicationContext.xml

-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@
44
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
55

66
<!-- ENTITY PROVIDERS START -->
7-
<bean parent="org.sakaiproject.entitybroker.entityprovider.AbstractEntityProvider"
8-
class="org.sakaiproject.blti.entityprovider.BLTIEventsEntityProvider">
9-
</bean>
107
<bean parent="org.sakaiproject.entitybroker.entityprovider.AbstractEntityProvider"
118
class="org.sakaiproject.lti.entityprovider.LTIEntityProvider">
129
<property name="siteService" ref="org.sakaiproject.site.api.SiteService" />

basiclti/basiclti-common/pom.xml

-17
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,6 @@
3434
<groupId>org.sakaiproject.kernel</groupId>
3535
<artifactId>sakai-kernel-util</artifactId>
3636
</dependency>
37-
<dependency>
38-
<groupId>org.sakaiproject.entitybroker</groupId>
39-
<artifactId>entitybroker-api</artifactId>
40-
<scope>provided</scope>
41-
</dependency>
42-
<dependency>
43-
<groupId>org.sakaiproject.entitybroker</groupId>
44-
<artifactId>entitybroker-utils</artifactId>
45-
</dependency>
4637
<dependency>
4738
<groupId>org.sakaiproject.common</groupId>
4839
<artifactId>sakai-privacy-api</artifactId>
@@ -71,14 +62,6 @@
7162
<groupId>com.nimbusds</groupId>
7263
<artifactId>nimbus-jose-jwt</artifactId>
7364
</dependency>
74-
<dependency>
75-
<groupId>org.springframework</groupId>
76-
<artifactId>spring-core</artifactId>
77-
</dependency>
78-
<dependency>
79-
<groupId>org.springframework</groupId>
80-
<artifactId>spring-beans</artifactId>
81-
</dependency>
8265
<dependency>
8366
<groupId>org.springframework</groupId>
8467
<artifactId>spring-context</artifactId>

basiclti/basiclti-tool/pom.xml

+13
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,19 @@
4545
<groupId>org.sakaiproject.kernel</groupId>
4646
<artifactId>sakai-component-manager</artifactId>
4747
</dependency>
48+
<dependency>
49+
<groupId>org.sakaiproject.entitybroker</groupId>
50+
<artifactId>entitybroker-api</artifactId>
51+
<scope>provided</scope>
52+
</dependency>
53+
<dependency>
54+
<groupId>org.sakaiproject.entitybroker</groupId>
55+
<artifactId>entitybroker-utils</artifactId>
56+
</dependency>
57+
<dependency>
58+
<groupId>org.springframework</groupId>
59+
<artifactId>spring-beans</artifactId>
60+
</dependency>
4861
<dependency>
4962
<groupId>org.sakaiproject.grading</groupId>
5063
<artifactId>sakai-grading-api</artifactId>

basiclti/basiclti-common/src/java/org/sakaiproject/blti/entityprovider/BLTIEventsEntityProvider.java basiclti/basiclti-tool/src/java/org/sakaiproject/blti/entityprovider/BLTIEventsEntityProvider.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.sakaiproject.blti.entityprovider;
16+
package org.sakaiproject.blti.tool.entityprovider;
1717

1818
import java.util.Locale;
1919
import java.util.Map;

basiclti/basiclti-portlet/src/webapp/WEB-INF/applicationContext.xml basiclti/basiclti-tool/src/webapp/WEB-INF/applicationContext.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<!-- ENTITY PROVIDERS START -->
77
<bean parent="org.sakaiproject.entitybroker.entityprovider.AbstractEntityProvider"
8-
class="org.sakaiproject.blti.entityprovider.BLTIEventsEntityProvider">
8+
class="org.sakaiproject.blti.tool.entityprovider.BLTIEventsEntityProvider">
99
</bean>
1010
<!-- ENTITY PROVIDERS END -->
1111

basiclti/basiclti-tool/src/webapp/WEB-INF/web.xml

+3
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,8 @@
5353
<listener>
5454
<listener-class>org.sakaiproject.util.ToolListener</listener-class>
5555
</listener>
56+
<listener>
57+
<listener-class>org.sakaiproject.util.SakaiContextLoaderListener</listener-class>
58+
</listener>
5659

5760
</web-app>

plus/provider/src/main/webapp/WEB-INF/applicationContext.xml

-12
This file was deleted.

0 commit comments

Comments
 (0)