1280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang/*
2280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang * Copyright (C) 2011 The Android Open Source Project
3280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang *
4280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang * Licensed under the Apache License, Version 2.0 (the "License");
5280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang * you may not use this file except in compliance with the License.
6280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang * You may obtain a copy of the License at
7280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang *
8280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang *      http://www.apache.org/licenses/LICENSE-2.0
9280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang *
10280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang * Unless required by applicable law or agreed to in writing, software
11280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang * distributed under the License is distributed on an "AS IS" BASIS,
12280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang * See the License for the specific language governing permissions and
14280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang * limitations under the License.
15280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang */
16280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang
17280000f75f35feb1035996f0b085d32c7190cb66Gloria Wangpackage android.drm.cts;
18280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang
19280000f75f35feb1035996f0b085d32c7190cb66Gloria Wangimport java.util.HashMap;
20280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang
21280000f75f35feb1035996f0b085d32c7190cb66Gloria Wangpublic interface Config {
22280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang    String getPluginName();
23280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang    String getMimeType();
24280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang    String getAccountId();
25280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang    String getRightsPath();
26280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang    String getContentPath();
27280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang    HashMap<String, String> getInfoOfRegistration();
28280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang    HashMap<String, String> getInfoOfUnregistration();
29280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang    HashMap<String, String> getInfoOfRightsAcquisition();
30280000f75f35feb1035996f0b085d32c7190cb66Gloria Wang}
31