Interface IVcDataGroupInfoFilterFactory
-
public interface IVcDataGroupInfoFilterFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IFilter<DataGroupInfo>getByApplication(String p_strAppGuid)Get a filter for data groups that belong to the given application.IFilter<DataGroupInfo>getByParentDataGroup(String p_strParentDataGroupGuid)Get a filter for data groups that belong to the given parent data group (file data groups are ignored).IFilter<DataGroupInfo>getBySysIdent(String p_strAppGuid, String p_strSysIdent)Get a filter to get data groups by their system identifier.
-
-
-
Method Detail
-
getByApplication
IFilter<DataGroupInfo> getByApplication(String p_strAppGuid)
Get a filter for data groups that belong to the given application.- Parameters:
p_strAppGuid- The application GUID.- Returns:
- The filter.
-
getByParentDataGroup
IFilter<DataGroupInfo> getByParentDataGroup(String p_strParentDataGroupGuid)
Get a filter for data groups that belong to the given parent data group (file data groups are ignored).- Parameters:
p_strParentDataGroupGuid- The GUID of the parent data group.- Returns:
- The filter.
-
getBySysIdent
IFilter<DataGroupInfo> getBySysIdent(String p_strAppGuid, String p_strSysIdent)
Get a filter to get data groups by their system identifier.Note: Accessing data groups by their sysident is discouraged.
- Parameters:
p_strAppGuid- The application GUID.p_strSysIdent- The data group's system identifier.- Returns:
- The filter.
-
-