Package lumis.portal.channel.tree
Class ChannelTreeDaoJdbc
- java.lang.Object
-
- lumis.portal.channel.tree.ChannelTreeDaoJdbc
-
- All Implemented Interfaces:
IChannelTreeDao
public class ChannelTreeDaoJdbc extends Object implements IChannelTreeDao
Dao Jdbc for channel tree.- Since:
- 4.0.0
- Version:
- $Revision: 22358 $ $Date: 2019-02-05 14:54:00 -0200 (Tue, 05 Feb 2019) $
-
-
Field Summary
-
Fields inherited from interface lumis.portal.channel.tree.IChannelTreeDao
HIDE_TYPE_ALWAYS, HIDE_TYPE_IF_HIDDEN_SPECIFIED, HIDE_TYPE_NEVER
-
-
Constructor Summary
Constructors Constructor Description ChannelTreeDaoJdbc()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,List<lumis.portal.channel.tree.Channel>>
getBasicData(String channelId, boolean hideChannelTemplates, String primaryServiceInstanceId, ITransaction transaction)
Get the basic tree data of the channel considering area tags from each channel.Map<String,List<lumis.portal.channel.tree.Channel>>
getBasicData(String channelId, boolean hideChannelTemplates, ITransaction transaction)
Get the basic tree data of the channel.Map<String,List<lumis.portal.channel.tree.Channel>>
getBasicDataWithAreaTags(String channelId, String rootChannelId, boolean hideChannelTemplates, Collection<String> areaTags, ITransaction transaction)
Get the basic tree data of the channel (with a given root channel) considering area tags from each child channels.Map<String,List<lumis.portal.channel.tree.Channel>>
getBasicDataWithRootChannel(String channelId, String rootChannelId, boolean hideChannelTemplates, ITransaction transaction)
Get the basic tree data of the channel (with a given root channel).org.json.simple.JSONArray
getChannelChildren(String channelId, ITransaction transaction)
org.json.simple.JSONObject
getChannelTree(String channelId, boolean includeParents, boolean localizeNames, ITransaction transaction)
Map<String,List<lumis.portal.channel.tree.Channel>>
getChildrenData(String channelId, int hideChannels, int hidePages, int hidePageTemplates, int hideChannelTemplates, ITransaction transaction)
Get the tree childen's data of the channel.
-
-
-
Method Detail
-
getChannelTree
public org.json.simple.JSONObject getChannelTree(String channelId, boolean includeParents, boolean localizeNames, ITransaction transaction) throws DaoException, PortalException
- Specified by:
getChannelTree
in interfaceIChannelTreeDao
- Throws:
DaoException
PortalException
-
getChannelChildren
public org.json.simple.JSONArray getChannelChildren(String channelId, ITransaction transaction) throws DaoException, PortalException
- Specified by:
getChannelChildren
in interfaceIChannelTreeDao
- Throws:
DaoException
PortalException
-
getBasicData
public Map<String,List<lumis.portal.channel.tree.Channel>> getBasicData(String channelId, boolean hideChannelTemplates, ITransaction transaction) throws DaoException, PortalException
Description copied from interface:IChannelTreeDao
Get the basic tree data of the channel. This method returns all the parents (entire ancestry) of the given channel. This is the minimum information required to render a channel within its tree.- Specified by:
getBasicData
in interfaceIChannelTreeDao
- Returns:
- Throws:
DaoException
PortalException
-
getBasicDataWithRootChannel
public Map<String,List<lumis.portal.channel.tree.Channel>> getBasicDataWithRootChannel(String channelId, String rootChannelId, boolean hideChannelTemplates, ITransaction transaction) throws PortalException
Description copied from interface:IChannelTreeDao
Get the basic tree data of the channel (with a given root channel). This method returns all the parents (entire ancestry) of the given channel. This is the minimum information required to render a channel within its tree.- Specified by:
getBasicDataWithRootChannel
in interfaceIChannelTreeDao
- Parameters:
channelId
- the channel id.rootChannelId
- the root channel id.hideChannelTemplates
- hides the channel templates.transaction
- the transaction to be used.- Returns:
- the basic tree data of the channel (with a given root channel)
- Throws:
PortalException
-
getBasicDataWithAreaTags
public Map<String,List<lumis.portal.channel.tree.Channel>> getBasicDataWithAreaTags(String channelId, String rootChannelId, boolean hideChannelTemplates, Collection<String> areaTags, ITransaction transaction) throws PortalException
Description copied from interface:IChannelTreeDao
Get the basic tree data of the channel (with a given root channel) considering area tags from each child channels. This method returns all the parents (entire ancestry) of the given channel. This is the minimum information required to render a channel within its tree.- Specified by:
getBasicDataWithAreaTags
in interfaceIChannelTreeDao
- Parameters:
channelId
- the current channel id.rootChannelId
- the root channel that will be used as reference to start the query.hideChannelTemplates
- if is to hide or not channel templates.areaTags
- the list of area tags that the channels must have (at least one) to be returned.transaction
- the transaction to be used during the process.- Returns:
- Get the basic tree data of the channel (with a given root channel) considering area tags from each child channels.
- Throws:
PortalException
- if any other error occurs during the process.
-
getChildrenData
public Map<String,List<lumis.portal.channel.tree.Channel>> getChildrenData(String channelId, int hideChannels, int hidePages, int hidePageTemplates, int hideChannelTemplates, ITransaction transaction) throws DaoException, PortalException
Description copied from interface:IChannelTreeDao
Get the tree childen's data of the channel.- Specified by:
getChildrenData
in interfaceIChannelTreeDao
- Returns:
- Throws:
DaoException
PortalException
-
getBasicData
public Map<String,List<lumis.portal.channel.tree.Channel>> getBasicData(String channelId, boolean hideChannelTemplates, String primaryServiceInstanceId, ITransaction transaction) throws DaoException, PortalException
Description copied from interface:IChannelTreeDao
Get the basic tree data of the channel considering area tags from each channel. This method returns all the parents (entire ancestry) of the given channel. This is the minimum information required to render a channel within its tree.- Specified by:
getBasicData
in interfaceIChannelTreeDao
- Parameters:
channelId
- the current channel id.hideChannelTemplates
- if is to hide or not channel templates.transaction
- the transaction to be used during the process.- Returns:
- the basic tree data of the channel considering area tags from each channel.
- Throws:
DaoException
- if any error occurs during the data base query.PortalException
- if any other error occurs during the process.
-
-