Files
alfresco-community-repo/config/alfresco/slideshare-publishing-context.xml
Brian Remmington 5c4f984dd2 Publishing:
- Fixes ALF-9841: Attempting to createNode() in a readonly transaction
- Hide the channel-specific publishing actions from the UI

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@29626 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2011-08-09 11:09:16 +00:00

39 lines
1.7 KiB
XML

<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans>
<bean parent="dictionaryModelBootstrap" depends-on="dictionaryBootstrap">
<property name="models">
<list>
<value>alfresco/model/slidesharePublishingModel.xml</value>
</list>
</property>
</bean>
<bean id="slidesharePublishingHelper" class="org.alfresco.repo.publishing.slideshare.SlideSharePublishingHelper">
<property name="nodeService" ref="NodeService" />
<property name="slideshareConnector" ref="slideshareApiConnector" />
</bean>
<bean id="slideshareApiConnector" class="com.benfante.jslideshare.SlideShareConnectorImpl">
<property name="apiKey" value="iXUZdaNl" />
<property name="sharedSecret" value="DLysO5tR" />
</bean>
<bean id="publish_slideshare" parent="action-executer" class="org.alfresco.repo.publishing.slideshare.SlideSharePublishAction">
<property name="nodeService" ref="NodeService" />
<property name="taggingService" ref="TaggingService" />
<property name="contentService" ref="ContentService" />
<property name="slideShareHelper" ref="slidesharePublishingHelper" />
<property name="publicAction" value="false" />
</bean>
<bean id="slideshareDeliveryChannelType" class="org.alfresco.repo.publishing.slideshare.SlideShareChannelType" parent="baseChannelType" >
<property name="actionService" ref="ActionService" />
<property name="nodeService" ref="NodeService" />
<property name="publishingHelper" ref="slidesharePublishingHelper" />
</bean>
</beans>