From 19145084d95d4a712ce2bca0de8a8cea413c74c1 Mon Sep 17 00:00:00 2001 From: Brian Remmington Date: Tue, 26 Jul 2011 12:37:51 +0000 Subject: [PATCH] Publishing: - On channel authorisation, if a retry is permitted the webscript now does a browser redirect back to the authorisation URL - The controller for the authform.get webscript now places the relevant Channel object into the model for use by the template git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@29350 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261 --- .../service/cmr/publishing/channels/ChannelService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/java/org/alfresco/service/cmr/publishing/channels/ChannelService.java b/source/java/org/alfresco/service/cmr/publishing/channels/ChannelService.java index 3ec6c3f46c..7e84511973 100644 --- a/source/java/org/alfresco/service/cmr/publishing/channels/ChannelService.java +++ b/source/java/org/alfresco/service/cmr/publishing/channels/ChannelService.java @@ -84,13 +84,13 @@ public interface ChannelService void updateChannel(Channel channel, Map properties); /** - * Retrieve all the channels contained by the specified Share site. + * Retrieve all the channels. * @return A list of Channel objects, each one representing a channel that exists within the specified Share site. */ List getChannels(); /** - * Retrieve the channel with the given channel name contained by the specified Share site. + * Retrieve the channel with the given channel name. * @param channelName The name of the channel * @return The specified Channel objects or null if the specified channel does not exist. */