
|
If you were logged in you would be able to see more operations.
|
|
|
|
Issue Links:
|
Duplicate
|
|
This issue duplicates:
|
|
SAK-15339
CHAT_MESSAGE and CHAT_CHANNEL are still part of the Sakai 2.4 DB even if they're unused
|
|
|
|
|
|
|
|
| 2.6.x Status: |
Closed
|
| 2.5.x Status: |
None
|
| 2.4.x Status: |
None
|
|
Chat still includes code like ChatAction.java which belongs to the old velocity tool and should be removed to facilitate easier maintenance of code.
|
|
Description
|
Chat still includes code like ChatAction.java which belongs to the old velocity tool and should be removed to facilitate easier maintenance of code.
|
Show » |
|
chat-tool/tool/src/java/org/sakaiproject/chat
chat-impl/impl/src/java/org/sakaiproject/chat/
with this adjustment to components.xml.
Can probably also remove some APIs.
Index: chat/chat-impl/pack/src/webapp/WEB-INF/components.xml
===================================================================
--- chat/chat-impl/pack/src/webapp/WEB-INF/components.xml (revision 53809)
+++ chat/chat-impl/pack/src/webapp/WEB-INF/components.xml (working copy)
@@ -124,30 +124,4 @@
<property name="siteService" ref="org.sakaiproject.site.api.SiteService"/>
</bean>
- <bean id="org.sakaiproject.chat.api.ChatService"
- class="org.sakaiproject.chat.impl.DbChatService"
- init-method="init"
- destroy-method="destroy"
- singleton="true">
- <property name="memoryService"><ref bean="org.sakaiproject.memory.api.MemoryService"/></property>
- <property name="sqlService"><ref bean="org.sakaiproject.db.api.SqlService"/></property>
- <property name="serverConfigurationService"><ref bean="org.sakaiproject.component.api.ServerConfigurationService"/></property>
- <property name="entityManager"><ref bean="org.sakaiproject.entity.api.EntityManager"/></property>
- <property name="authzGroupService"><ref bean="org.sakaiproject.authz.api.AuthzGroupService"/></property>
- <property name="sessionManager"><ref bean="org.sakaiproject.tool.api.SessionManager"/></property>
- <property name="securityService"><ref bean="org.sakaiproject.authz.api.SecurityService"/></property>
- <property name="userDirectoryService"><ref bean="org.sakaiproject.user.api.UserDirectoryService"/></property>
- <property name="timeService"><ref bean="org.sakaiproject.time.api.TimeService"/></property>
- <property name="eventTrackingService"><ref bean="org.sakaiproject.event.api.EventTrackingService"/></property>
- <property name="idManager"><ref bean="org.sakaiproject.id.api.IdManager"/></property>
- <property name="threadLocalManager"><ref bean="org.sakaiproject.thread_local.api.ThreadLocalManager"/></property>
- <property name="siteService"><ref bean="org.sakaiproject.site.api.SiteService"/></property>
-
- <property name="containerTableName"><value>CHAT_CHANNEL</value></property>
- <property name="resourceTableName"><value>CHAT_MESSAGE</value></property>
- <property name="locksInDb"><value>false</value></property>
- <property name="autoDdl"><value>${auto.ddl}</value></property>
- </bean>
-
-
</beans>