Skip to content

Commit

Permalink
spn: Move from sdk
Browse files Browse the repository at this point in the history
Change-Id: I7d47b8185041783537e26c32f46f5d689e683555
  • Loading branch information
luk1337 authored and afterallafk committed Sep 23, 2024
1 parent 4747dbb commit f331893
Show file tree
Hide file tree
Showing 6 changed files with 117 additions and 0 deletions.
29 changes: 29 additions & 0 deletions spn/Android.bp
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
//
// Copyright (C) 2024 The LineageOS 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.
//

// Sensitive Phone Numbers schema
// =============================================================
filegroup {
name: "spn-schema",
srcs: ["SpnInfo.xsd"],
}

xsd_config {
name: "spn-info",
srcs: [":spn-schema"],
api_dir: "schema",
package_name: "org.lineageos.lib.phone.spn",
}
47 changes: 47 additions & 0 deletions spn/SpnInfo.xsd
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ 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.
-->
<xs:schema version="2.0"
elementFormDefault="qualified"
attributeFormDefault="unqualified"
xmlns:xs="http://www.w3.org/2001/XMLSchema">

<xs:element name="sensitivePNS">
<xs:complexType>
<xs:sequence>
<xs:element name="sensitivePN" maxOccurs="unbounded" type="sensitivePN" />
</xs:sequence>
</xs:complexType>
</xs:element>

<xs:complexType name="sensitivePN">
<xs:sequence>
<xs:element name="item" maxOccurs="unbounded" type="item" />
</xs:sequence>
<xs:attribute name="network" type="xs:string" use="required" />
</xs:complexType>

<xs:complexType name="item">
<xs:sequence>
<xs:element name="number" type="xs:string" />
<xs:element name="name" minOccurs="0" type="xs:string" />
<xs:element name="categories" minOccurs="0" type="xs:string" />
<xs:element name="languages" minOccurs="0" type="xs:string" />
<xs:element name="organization" minOccurs="0" type="xs:string" />
<xs:element name="website" minOccurs="0" type="xs:anyURI" />
</xs:sequence>
</xs:complexType>
</xs:schema>
40 changes: 40 additions & 0 deletions spn/schema/current.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
// Signature format: 2.0
package org.lineageos.lib.phone.spn {

public class Item {
ctor public Item();
method public String getCategories();
method public String getLanguages();
method public String getName();
method public String getNumber();
method public String getOrganization();
method public String getWebsite();
method public void setCategories(String);
method public void setLanguages(String);
method public void setName(String);
method public void setNumber(String);
method public void setOrganization(String);
method public void setWebsite(String);
}

public class SensitivePN {
ctor public SensitivePN();
method public java.util.List<org.lineageos.lib.phone.spn.Item> getItem();
method public String getNetwork();
method public void setNetwork(String);
}

public class SensitivePNS {
ctor public SensitivePNS();
method public java.util.List<org.lineageos.lib.phone.spn.SensitivePN> getSensitivePN();
}

public class XmlParser {
ctor public XmlParser();
method public static org.lineageos.lib.phone.spn.SensitivePNS read(java.io.InputStream) throws javax.xml.datatype.DatatypeConfigurationException, java.io.IOException, org.xmlpull.v1.XmlPullParserException;
method public static String readText(org.xmlpull.v1.XmlPullParser) throws java.io.IOException, org.xmlpull.v1.XmlPullParserException;
method public static void skip(org.xmlpull.v1.XmlPullParser) throws java.io.IOException, org.xmlpull.v1.XmlPullParserException;
}

}

Empty file added spn/schema/last_current.txt
Empty file.
Empty file added spn/schema/last_removed.txt
Empty file.
1 change: 1 addition & 0 deletions spn/schema/removed.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
// Signature format: 2.0

0 comments on commit f331893

Please sign in to comment.