mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@31169 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
39 lines
1.6 KiB
XML
39 lines
1.6 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="slideshareChannelMessageBundle" class="org.alfresco.i18n.ResourceBundleBootstrapComponent">
|
|
<property name="resourceBundles">
|
|
<list>
|
|
<value>org.alfresco.repo.publishing.slideshare.slideshare-publishing</value>
|
|
</list>
|
|
</property>
|
|
</bean>
|
|
|
|
<bean id="slidesharePublishingHelper" class="org.alfresco.repo.publishing.slideshare.SlideSharePublishingHelper">
|
|
<property name="slideshareConnector" ref="slideshareApiConnector" />
|
|
<property name="encryptor" ref="metadataEncryptor" />
|
|
</bean>
|
|
|
|
<bean id="slideshareApiConnector" class="org.alfresco.repo.publishing.slideshare.SlideShareConnectorImpl">
|
|
<property name="apiKey" value="iXUZdaNl" />
|
|
<property name="sharedSecret" value="DLysO5tR" />
|
|
</bean>
|
|
|
|
<bean id="slideshareDeliveryChannelType" class="org.alfresco.repo.publishing.slideshare.SlideShareChannelType" parent="baseChannelType" >
|
|
<property name="publishingHelper" ref="slidesharePublishingHelper" />
|
|
<property name="taggingService" ref="TaggingService" />
|
|
<property name="contentService" ref="ContentService" />
|
|
</bean>
|
|
|
|
|
|
</beans>
|