public static FisheryAreasHistory getMock2() {
    FisheryAreasHistory mock = new FisheryAreasHistory();
    mock.setId(2L);
    mock.setYear(2009);
    mock.setHistory(MLSu.english("Si vis pacem para bellum"));

    return mock;
  }
  public static FisheryAreasHistory getMock3() {
    FisheryAreasHistory mock = new FisheryAreasHistory();
    mock.setId(3L);
    mock.setYear(2010);
    mock.setHistory(MLSu.english("Alea iacta est"));

    return mock;
  }
  public static FisheryAreasHistory getMock1() {
    FisheryAreasHistory mock = new FisheryAreasHistory();
    mock.setId(1L);
    mock.setYear(1999);
    mock.setHistory(MLSu.english("Semel in anno licet insanire"));

    return mock;
  }