Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: cc00f6231d277e4bbcf02f3a25326ba34dce49ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*
 * Copyright (c) 2014-2017 Eike Stepper (Loehne, Germany) and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v2.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v20.html
 *
 * Contributors:
 *    Eike Stepper - initial API and implementation
 */
package org.eclipse.oomph.internal.setup;

/**
 * @author Eike Stepper
 */
public class SetupProperties
{
  public static final String PROP_DO_NOT_LOAD_RESOURCES_PLUGIN = "org.eclipse.emf.ecore.plugin.EcorePlugin.doNotLoadResourcesPlugin";

  public static final String PROP_REDIRECTION_BASE = "oomph.redirection.";

  public static final String PROP_UPDATE_URL = "oomph.update.url";

  public static final String PROP_SETUP_SKIP = "oomph.setup.skip";

  public static final String PROP_SETUP_STATS_SKIP = "oomph.setup.stats.skip";

  public static final String PROP_SETUP_QUESTIONNAIRE_SKIP = "oomph.setup.questionnaire.skip";

  public static final String PROP_SETUP_OFFLINE_STARTUP = "oomph.setup.offline.startup";

  public static final String PROP_SETUP_MIRRORS_STARTUP = "oomph.setup.mirrors.startup";

  public static final String PROP_SETUP_OFFLINE = "oomph.setup.offline";

  public static final String PROP_SETUP_MIRRORS = "eclipse.p2.mirrors";

  /**
   * Automatically accepts unsigned content if set to 'true'.
   */
  public static final String PROP_SETUP_UNSIGNED_POLICY = "eclipse.p2.unsignedPolicy";

  /**
   * Automatically accepts certificates content if set to 'true'.
   */
  public static final String PROP_SETUP_CERTIFICATE_POLICY = "eclipse.p2.certificatePolicy";

  public static final String PROP_SETUP_REMOTE_DEBUG = "oomph.setup.remote.debug";

  public static final String PROP_SETUP_USER_HOME_REDIRECT = "oomph.setup.user.home.redirect";

  public static final String PROP_SETUP_SYNC_SKIP = "oomph.setup.sync.skip";

  public static final String PROP_SETUP_SYNC_TIMEOUT = "oomph.setup.sync.timeout";

  public static final String PROP_SETUP_SYNC_CREDENTIAL_PROVIDER_SKIP_DEFAULT = "oomph.setup.sync.credential.provider.skip.default";

  /**
   * The value 'simple' starts the installer in simple mode, 'advanced' in advanced mode.
   * The property is not case sensitive.
   */
  public static final String PROP_SETUP_INSTALLER_MODE = "oomph.setup.installer.mode";

  public static final String PROP_SETUP_INSTALLER_MARKETPLACE = "oomph.setup.installer.marketplace";

  public static final String PROP_SETUP_INSTALLER_PROBLEM_REPORT = "oomph.setup.installer.problem.report";

  public static final String PROP_SETUP_INSTALLER_FORUM = "oomph.setup.installer.forum";

  public static final String PROP_SETUP_INSTALLER_URI_SCHEME = "oomph.setup.installer.uri.scheme.";

  public static final String PROP_SETUP_PRODUCT_CATALOG_FILTER = "oomph.setup.product.catalog.filter";

  public static final String PROP_SETUP_PRODUCT_FILTER = "oomph.setup.product.filter";

  public static final String PROP_SETUP_PRODUCT_VERSION_FILTER = "oomph.setup.product.version.filter";

  public static final String PROP_SETUP_JRE_CHOICE = "oomph.setup.jre.choice";

  public static final String PROP_SETUP_INSTALL_CHOICE = "oomph.setup.install.choice";

  public static final String PROP_SETUP_ECF_TRACE = "oomph.setup.ecf.trace";

  public static final String PROP_SETUP_ECF_CONNECT_TIMEOUT = "oomph.setup.ecf.connect.timeout";

  public static final String PROP_SETUP_ECF_READ_TIMEOUT = "oomph.setup.ecf.read.timeout";

  public static final String PROP_INSTALLER_UPDATE_URL = "oomph.installer.update.url";

  public static final String PROP_SETUP_USER_AGENT = "oomph.userAgent";

  /**
   * If set, the 'launch automatically' and the 'restart if needed' check boxes are not displayed; instead the property value (true or false) is used directly.
   */
  public static final String PROP_SETUP_LAUNCH_AUTOMATICALLY = "oomph.setup.launch.automatically";

  private SetupProperties()
  {
  }
}

Back to the top