/* WearSystemProfile.java Copyright (c) 2014 NTT DOCOMO,INC. Released under the MIT license http://opensource.org/licenses/mit-license.php */ package org.deviceconnect.android.deviceplugin.wear.profile; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import org.deviceconnect.android.deviceplugin.wear.setting.WearServiceListActivity; import org.deviceconnect.android.profile.SystemProfile; /** * System Profile. * * @author NTT DOCOMO, INC. */ public class WearSystemProfile extends SystemProfile { @Override protected Class<? extends Activity> getSettingPageActivity(final Intent request, final Bundle param) { return WearServiceListActivity.class; } }