Searched refs:allowedClientList (Results 1 – 3 of 3) sorted by relevance
1135 ArrayList<MacAddress> allowedClientList = new ArrayList<>(); in testResetToDefaultForUnsupportedConfig() local1137 allowedClientList.add(MacAddress.fromString("aa:bb:cc:dd:ee:ff")); in testResetToDefaultForUnsupportedConfig()1139 configBuilder.setAllowedClientList(allowedClientList); in testResetToDefaultForUnsupportedConfig()1147 assertEquals(resetedConfig.getAllowedClientList(), allowedClientList); in testResetToDefaultForUnsupportedConfig() local1162 assertEquals(resetedConfig.getAllowedClientList(), allowedClientList); in testResetToDefaultForUnsupportedConfig() local1171 assertEquals(resetedConfig.getAllowedClientList(), allowedClientList); in testResetToDefaultForUnsupportedConfig() local
1432 ArrayList<MacAddress> allowedClientList = new ArrayList<>(); in testClientConnectedAfterUpdateToAllowListwhenClientAuthorizationEnabled() local1460 allowedClientList.add(TEST_CLIENT_MAC_ADDRESS); in testClientConnectedAfterUpdateToAllowListwhenClientAuthorizationEnabled()1461 configBuilder.setAllowedClientList(allowedClientList); in testClientConnectedAfterUpdateToAllowListwhenClientAuthorizationEnabled()1532 ArrayList<MacAddress> allowedClientList = new ArrayList<>(); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect() local1533 allowedClientList.add(TEST_CLIENT_MAC_ADDRESS); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect()1534 allowedClientList.add(TEST_CLIENT_MAC_ADDRESS_2); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect()1542 configBuilder.setAllowedClientList(allowedClientList); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect()1570 allowedClientList.clear(); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect()1571 allowedClientList.add(TEST_CLIENT_MAC_ADDRESS_2); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect()1575 configBuilder.setAllowedClientList(allowedClientList); in testConfigChangeToSmallAndClientAddBlockListCauseClientDisconnect()
1970 public Builder setAllowedClientList(@NonNull List<MacAddress> allowedClientList) { in setAllowedClientList() argument1971 mAllowedClientList = new ArrayList<>(allowedClientList); in setAllowedClientList()