001package systems.dmx.core.util;
002
003import java.util.ArrayList;
004
005
006
007public class IdList extends ArrayList<Long> {
008
009 public IdList() {
010 }
011
012 public IdList(String ids) {
013 for (String id : ids.split(",")) {
014 add(Long.parseLong(id));
015 }
016 }
017}