001 /*
002 * ----------------------------------------------------------------------
003 * Copyright (C) 2009 Enrique Lara (k957@68k.org)
004 *
005 * TinLizard is free software; you can redistribute it and/or
006 * modify it under the terms of the GNU Lesser General Public License
007 * as published by the Free Software Foundation; either version 3.0
008 * of the License, or (at your option) any later version.
009 *
010 * TinLizard is distributed in the hope that it will be useful,
011 * but WITHOUT ANY WARRANTY; without even the implied warranty of
012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
013 * GNU Lesser General Public License for more details.
014 *
015 * You should have received a copy of the GNU Lesser General Public License
016 * along with TinLizard. If not, see http://www.gnu.org/licenses/.
017 * ----------------------------------------------------------------------
018 */
019 package tinlizard.dataload;
020
021 import tinlizard.model.Policy;
022 import tinlizard.model.Project;
023 import tinlizard.model.User;
024 import tinlizard.model.View;
025
026 /**
027 * Utility Class to hold references to test data.
028 */
029 public final class Data {
030 public static final String MAVEN_WAR_PLUGIN_SCM_URL = "scm:svn:http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-war-plugin/";
031 public static final String MAVEN_SCM_HG_PLUGIN_SCM_URL = "http://svn.apache.org/repos/asf/maven/scm/trunk/maven-scm-providers/maven-scm-provider-hg/";
032 public static final String TIN_LIZARD_SCM_URL = "scm:svn:https://tinlizard.svn.sourceforge.net/svnroot/tinlizard/trunk/tinlizard";
033 public static final String JMORSE_SCM_URL = "scm:cvs:pserver:anonymous@jmorse.cvs.sourceforge.net:/cvsroot/jmorse:jmorse";
034 public static final String MAVEN_WAR_PLUGIN = "maven-war-plugin";
035 public static final String MAVEN_SCM_HG_PLUGIN = "maven-scm-provider-hg";
036 public static final String JMORSE = "jmorse";
037 public static final String TIN_LIZARD = "tinlizard";
038 public User systemUser;
039 public User userUser;
040 public User jqhaxorUser;
041 public User adminUser;
042 public Project tinlizardProject;
043 public Project jmorseProject;
044 public Project mavenWarPluginProject;
045 public Project mavenScmHGPluginProject;
046 public View defaultView;
047 public View rewriteView;
048 public View defaultRetiredView;
049 public Policy retiredPolicy;
050 public Policy devPolicy;
051 public Policy releasePolicy;
052 }