Interface IDsucContainer
-
public interface IDsucContainer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<IDsContainerRecord>
selectContainerChildrenTree(de.uplanet.jdbc.JdbcConnection p_conn, String p_strFromGuid, IDsSelectFilter p_selectFilter)
returns all container below the given container set by p_strFromGuidList<IDsObjectRecord>
selectContainerItems(de.uplanet.jdbc.JdbcConnection p_conn, String p_strGUID, IDsSelectFilter p_selectFilter)
returns all items in the given containerList<IDsContainerRecord>
selectContainerTree(de.uplanet.jdbc.JdbcConnection p_conn, IDsSelectFilter p_selectFilter)
returns the full container tree
-
-
-
Method Detail
-
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
-
-