package com.plexsdk.http; import com.plexsdk.exceptions.ApiException; import java.util.List; public interface SessionsClient { ResponseWithHeaders getSessions() throws ApiException; ResponseWithHeaders getSessionHistory() throws ApiException; ResponseWithHeaders getTranscodeSessions() throws ApiException; ResponseWithHeaders stopTranscodeSession(String sessionKey) throws ApiException; }