blob: 97e40cdc07212d53d685e89b263242bd79423fc6 [file] [log] [blame]
/*
* Copyright (c) 2020 Kentyou.
* 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:
* Kentyou - initial API and implementation
*/
package org.eclipse.sensinact.gateway.app.basic.test;
import org.eclipse.sensinact.gateway.common.bundle.Mediator;
import org.eclipse.sensinact.gateway.core.method.legacy.ActResponse;
class AppActionResponse extends ActResponse {
public AppActionResponse(Mediator mediator, String uri, Status status, int code) {
super(mediator, uri, status, code);
}
}