Interface IDsucContainer
public interface IDsucContainer
-
Method Summary
Modifier and TypeMethodDescriptionselectContainerChildrenTree
(de.uplanet.jdbc.JdbcConnection p_conn, String p_strFromGuid, IDsSelectFilter p_selectFilter) returns all container below the given container set by p_strFromGuidselectContainerItems
(de.uplanet.jdbc.JdbcConnection p_conn, String p_strGUID, IDsSelectFilter p_selectFilter) returns all items in the given containerselectContainerTree
(de.uplanet.jdbc.JdbcConnection p_conn, IDsSelectFilter p_selectFilter) returns the full container tree
-
Method Details
-
selectContainerTree
List<IDsContainerRecord> selectContainerTree(de.uplanet.jdbc.JdbcConnection p_conn, IDsSelectFilter p_selectFilter) throws SQLException returns the full container tree- Returns:
- List of container records (not
null
) - Throws:
SQLException
-
selectContainerChildrenTree
List<IDsContainerRecord> selectContainerChildrenTree(de.uplanet.jdbc.JdbcConnection p_conn, String p_strFromGuid, IDsSelectFilter p_selectFilter) throws SQLException returns all container below the given container set by p_strFromGuid- Parameters:
p_strFromGuid
-- Returns:
- List of child container items (not
null
) - Throws:
SQLException
-
selectContainerItems
List<IDsObjectRecord> selectContainerItems(de.uplanet.jdbc.JdbcConnection p_conn, String p_strGUID, IDsSelectFilter p_selectFilter) throws SQLException returns all items in the given container- Parameters:
p_conn
-p_strGUID
-p_selectFilter
-- Returns:
- List of container items (not
null
) - Throws:
SQLException
-