1/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.layout.remote.api;
18
19import com.android.ide.common.rendering.api.AdapterBinding;
20import com.android.ide.common.rendering.api.IImageFactory;
21import com.android.ide.common.rendering.api.ResourceReference;
22import com.android.ide.common.rendering.api.SessionParams;
23import com.android.ide.common.rendering.api.SessionParams.Key;
24import com.android.ide.common.rendering.api.SessionParams.RenderingMode;
25
26import java.rmi.Remote;
27import java.rmi.RemoteException;
28import java.util.Map;
29
30/**
31 * Remote version of the {@link SessionParams} class
32 */
33public interface RemoteSessionParams extends RemoteRenderParams {
34    RenderingMode getRenderingMode() throws RemoteException;
35
36    boolean isLayoutOnly() throws RemoteException;
37
38    Map<ResourceReference, AdapterBinding> getAdapterBindings() throws RemoteException;
39
40    boolean getExtendedViewInfoMode() throws RemoteException;
41
42    int getSimulatedPlatformVersion() throws RemoteException;
43
44    RemoteILayoutPullParser getLayoutDescription() throws RemoteException;
45}
46