blob: b492159464bedc4c2c6dd0117b0e141bf61408e9 [file] [log] [blame]
/*
* Copyright (c) 2017 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
*/
package org.eclipse.sensinact.gateway.device.openhab.sensinact;
import org.eclipse.sensinact.gateway.sthbnd.http.smpl.HttpTaskConfigurator;
import org.eclipse.sensinact.gateway.sthbnd.http.task.HttpTask;
import org.eclipse.sensinact.gateway.util.UriUtils;
public class OpenHabActTaskConfigurator implements HttpTaskConfigurator {
@Override
public <T extends HttpTask<?, ?>> void configure(T task) throws Exception {
final String leaf = UriUtils.getLeaf(task.getPath());
final String content = leaf.substring(5).toUpperCase();
task.setContent(content);
}
}