View Javadoc

1   /*
2    * ----------------------------------------------------------------------
3    * Copyright (C) 2009 Enrique Lara (k957@68k.org)
4    *
5    * TinLizard is free software; you can redistribute it and/or
6    * modify it under the terms of the GNU Lesser General Public License
7    * as published by the Free Software Foundation; either version 3.0
8    * of the License, or (at your option) any later version.
9    *
10   * TinLizard is distributed in the hope that it will be useful,
11   * but WITHOUT ANY WARRANTY; without even the implied warranty of
12   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13   * GNU Lesser General Public License for more details.
14   *
15   * You should have received a copy of the GNU Lesser General Public License
16   * along with TinLizard. If not, see http://www.gnu.org/licenses/.
17   * ----------------------------------------------------------------------
18   */
19  package tinlizard.dataload;
20  
21  import tinlizard.model.Policy;
22  import tinlizard.model.Project;
23  import tinlizard.model.User;
24  import tinlizard.model.View;
25  
26  /***
27   * Utility Class to hold references to test data.
28   */
29  public final class Data {
30      public static final String MAVEN_WAR_PLUGIN_SCM_URL = "scm:svn:http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-war-plugin/";
31      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/";
32      public static final String TIN_LIZARD_SCM_URL = "scm:svn:https://tinlizard.svn.sourceforge.net/svnroot/tinlizard/trunk/tinlizard";
33      public static final String JMORSE_SCM_URL = "scm:cvs:pserver:anonymous@jmorse.cvs.sourceforge.net:/cvsroot/jmorse:jmorse";
34      public static final String MAVEN_WAR_PLUGIN = "maven-war-plugin";
35      public static final String MAVEN_SCM_HG_PLUGIN = "maven-scm-provider-hg";
36      public static final String JMORSE = "jmorse";
37      public static final String TIN_LIZARD = "tinlizard";
38      public User systemUser;
39      public User userUser;
40      public User jqhaxorUser;
41      public User adminUser;
42      public Project tinlizardProject;
43      public Project jmorseProject;
44      public Project mavenWarPluginProject;
45      public Project mavenScmHGPluginProject;
46      public View defaultView;
47      public View rewriteView;
48      public View defaultRetiredView;
49      public Policy retiredPolicy;
50      public Policy devPolicy;
51      public Policy releasePolicy;
52  }