*/
public static Object findByPrimaryKey(Connection con, PrimaryKey key) throws SQLException {
PreparedStatement pStmt = null;
ResultSet rs = null;
ServicegroupBean valueObject = null;
ServicegroupKey primaryKey = (ServicegroupKey) key;
try{
pStmt = con.prepareStatement(ServicegroupBeanBase.SELECT_STATEMENT);
pStmt.setObject(1, primaryKey.getUsergroupid());
pStmt.setObject(2, primaryKey.getServiceid());
rs = pStmt.executeQuery();
while (rs.next()){
valueObject = populate(rs);
valueObject.afterPopulate(con);
}