blob: 058456196ab852ca17f394e652f7f50badef5b74 [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.ActResponse;
class AppActionResponse extends ActResponse {
public AppActionResponse(Mediator mediator, String uri, Status status, int code) {
super(mediator, uri, status, code);
}
}