blob: e232ca8a83e906722c85c4a77a0b209c58a3af8b [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.protocol.http.server;
/**
*
*/
public interface RequestContent extends Content {
/**
* @return
*/
String getRequestURI();
/**
* @return
*/
String getQueryString();
/**
* @return
*/
String getHttpMethod();
}