String channelDefKey = String.valueOf(channelDef.getId());
IEntity channelDefEntity = GroupService.getEntity(channelDefKey, ChannelDefinition.class);
String categoryKey = String.valueOf(category.getId());
IEntityGroup categoryGroup = GroupService.findGroup(categoryKey);
categoryGroup.removeMember(channelDefEntity);
categoryGroup.updateMembers();
}
protected static final PreparedStatement getChannelPstmt(Connection con) throws SQLException {
String sql = "SELECT UC.CHAN_TITLE, UC.CHAN_DESC, UC.CHAN_CLASS, UC.CHAN_TYPE_ID, " +