summaryrefslogtreecommitdiff
path: root/framework-t/src/android/net/EthernetNetworkSpecifier.java
Commit message (Collapse)AuthorAgeFilesLines
* Making EthernetNetworkSpecifier publicJames Mattis2022-02-081-3/+1
| | | | | | | | | | Bug: 210485380 Test: atest EthernetServiceTests atest CtsNetTestCasesLatestSdk cherry pick of aosp/1971181 Change-Id: Ic0b7a3360745632eb024a97692e49f6c8dafa3ee
* Fix the Preconditions dependency in EthernetNetworkSpecifier.Xiao Ma2022-01-181-3/+3
| | | | | | | | | | | | Ethernet service related files are going to be moved into Connectivity module. Replace the Preconditions class in the EthernetNetworkSpecifier, either add modules-utils-preconditions static lib dependency to fix it, however, notice that will result in the duplicate class import when moving ethernet stuff to p/m/Connectivity. Bug: 210586283 Test: atest FrameworksNetTests EthernetServiceTests Change-Id: I6163699be4126ef1b95dfb87ec9a6aba2c01195a
* Move Ethernet related files to f/b/packages/ConnectivityT.Xiao Ma2021-12-161-0/+104
ethernet-service is going to be moved into Connectivity mainline module. Move all ethernet related files in f/b/ to f/b/packages/ConnectivityT so that it's easier to migrate these files to Connectivity module finally after clearing the hidden API usages. Below files to be moved: Ethernet framework related files: - EthernetManager.java - EthernetNetworkSpecifier.java - IEthernetManager.aidl - IEthernetServiceListener.aidl - ITetheredInterfaceCallback.aidl Ethernet service related files: - IpConfigStore.java(EthernetConfigStore has dependency on the class) For the ethernet-service related files, keep it as-is temproraliy and fix the hiden API dependencies in f/opt/net/ethernet/. After this work is done, then migrating the whole of ethernet folder to Connectivity module completely. This CL also fixes some minor errors of code style format to pass the code style check. Bug: 210586283 Test: build pass atest FrameworksNetTests atest EthernetServiceTests Change-Id: Ib359d29d5221105f648bc4194c6d6dbe4cc6e3e5