blob: a6a3c5e20aa958d12fa01900ef6bf4898b9d8aa1 [file] [log] [blame]
/**
* Copyright (c) 2019 CEA.
* 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:
* CEA - initial API and implementation and/or initial documentation
*/
package org.eclipse.sensinact.studio.model.resource.utils;
/**
* @author Etienne Gandrille
*/
public class Constants {
public static final ResourceDescriptor createInstallAppRD(String gatewayID) {
return new ResourceDescriptor(gatewayID, "AppManager", "admin", "INSTALL");
}
public static final ResourceDescriptor createUninstallAppRD(String gatewayID) {
return new ResourceDescriptor(gatewayID, "AppManager", "admin", "UNINSTALL");
}
}