/******************************************************************************* * Copyright (c) 2015 INRIA. * 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: * - Fawaz PARAISO *******************************************************************************/ package org.occiware.clouddesigner.occi.docker.preference.preferences; /** * Constant definitions for plug-in preferences */ public class PreferenceConstants { public static final String P_STRING_USERNAME = "docker.username"; public static final String P_STRING_PASSWORD = "docker.password"; public static final String P_STRING_EMAIL = "docker.email"; public static final String P_STRING_VERSION = "api.version"; public static final String P_STRING_URL = "docker.url"; public static final String E_MSG_USERNAME = "docker username cannot be null"; public static final String E_MSG_PASSWORD = "docker password cannot be null"; public static final String E_MSG_EMAIL = "docker email cannot be null"; public static final String E_MSG_VERSION = "docker client version cannot be null"; public static final String E_MSG_URL = "docker url cannot be null"; }