/******************************************************************************* * Copyright (c) 2012-2017 Codenvy, S.A. * 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: * Codenvy, S.A. - initial API and implementation *******************************************************************************/ package org.eclipse.che.api.ssh.shared; /** * Constants for ssh API * * @author Sergii Leschenko */ public final class Constants { public static final String LINK_REL_GENERATE_PAIR = "create pair"; public static final String LINK_REL_CREATE_PAIR = "create pair"; public static final String LINK_REL_GET_PAIRS = "get pairs"; public static final String LINK_REL_GET_PAIR = "get pair"; public static final String LINK_REL_REMOVE_PAIR = "remove pair"; private Constants() {} }