blob: 5d034b2be9a77a26db84d8b168b8782d4bd8fa7e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015-2016 Ericsson AB.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Jacques Bouthillier - initial API and implementation
*******************************************************************************/
package org.eclipse.egerrit.internal.ui.utils;
/**
* This class in used to defined global variables
*
* @since 1.0
*/
public class EGerritConstants {
public static final String PROJECT = "project"; //$NON-NLS-1$
public static final String BRANCH = "branch"; //$NON-NLS-1$
public static final String OWNER = "owner"; //$NON-NLS-1$
/**
* The default constructor. Do not allow to build an object of this class
*/
private EGerritConstants() {
}
}