blob: 91abf381cd2596eab946b2cb102bee4342e10af9 [file] [log] [blame]
/*
* Copyright (C) 2021 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.bedstead.harrier.policies;
import static com.android.bedstead.harrier.annotations.enterprise.EnterprisePolicy.DeviceOwnerControl.USER;
import static com.android.bedstead.harrier.annotations.enterprise.EnterprisePolicy.ProfileOwnerControl.PROFILE;
import android.app.admin.DevicePolicyManager;
import android.content.ComponentName;
import com.android.bedstead.harrier.annotations.enterprise.EnterprisePolicy;
/**
* Policy for application restrictions.
*
* <p>This is used by methods such as
* {@link DevicePolicyManager#setApplicationRestrictions(ComponentName, String, Bundle)} and
* {@link DevicePolicyManager#getApplicationRestrictions(ComponentName, String)}.
*/
@EnterprisePolicy(deviceOwner = USER, profileOwner = PROFILE)
// TODO(b/193563511): need a way to indicate that this test can run on device owner user when system
// users headless system user mode
public final class ApplicationRestrictions {
}