File tree Expand file tree Collapse file tree 4 files changed +10
-7
lines changed
main/java/org/everit/json/schema/loader
test/java/org/everit/json/schema/loader Expand file tree Collapse file tree 4 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 39
39
import org .everit .json .schema .NullSchema ;
40
40
import org .everit .json .schema .NumberSchema ;
41
41
import org .everit .json .schema .ObjectSchema ;
42
+ import org .everit .json .schema .ObjectSchema .Builder ;
42
43
import org .everit .json .schema .ReferenceSchema ;
43
44
import org .everit .json .schema .Schema ;
44
45
import org .everit .json .schema .SchemaException ;
45
46
import org .everit .json .schema .StringSchema ;
46
- import org .everit .json .schema .ObjectSchema .Builder ;
47
- import org .everit .json .schema .loader .JSONPointer .QueryResult ;
47
+ import org .everit .json .schema .loader .internal .DefaultSchemaClient ;
48
+ import org .everit .json .schema .loader .internal .JSONPointer ;
49
+ import org .everit .json .schema .loader .internal .JSONPointer .QueryResult ;
48
50
import org .json .JSONArray ;
49
51
import org .json .JSONObject ;
50
52
Original file line number Diff line number Diff line change 13
13
* See the License for the specific language governing permissions and
14
14
* limitations under the License.
15
15
*/
16
- package org .everit .json .schema .loader ;
16
+ package org .everit .json .schema .loader . internal ;
17
17
18
18
import java .io .IOException ;
19
19
import java .io .InputStream ;
20
20
import java .io .UncheckedIOException ;
21
21
import java .net .URL ;
22
22
23
+ import org .everit .json .schema .loader .SchemaClient ;
24
+
23
25
/**
24
26
* A {@link SchemaClient} implementation which uses {@link URL} for reading the remote content.
25
27
*/
Original file line number Diff line number Diff line change 13
13
* See the License for the specific language governing permissions and
14
14
* limitations under the License.
15
15
*/
16
- package org .everit .json .schema .loader ;
16
+ package org .everit .json .schema .loader . internal ;
17
17
18
18
import java .io .BufferedReader ;
19
19
import java .io .IOException ;
25
25
import java .util .function .Supplier ;
26
26
27
27
import org .everit .json .schema .SchemaException ;
28
+ import org .everit .json .schema .loader .SchemaClient ;
28
29
import org .json .JSONArray ;
29
30
import org .json .JSONException ;
30
31
import org .json .JSONObject ;
Original file line number Diff line number Diff line change 32
32
import org .everit .json .schema .Schema ;
33
33
import org .everit .json .schema .SchemaException ;
34
34
import org .everit .json .schema .StringSchema ;
35
- import org .everit .json .schema .loader .DefaultSchemaClient ;
36
- import org .everit .json .schema .loader .SchemaClient ;
37
- import org .everit .json .schema .loader .SchemaLoader ;
35
+ import org .everit .json .schema .loader .internal .DefaultSchemaClient ;
38
36
import org .json .JSONArray ;
39
37
import org .json .JSONObject ;
40
38
import org .json .JSONTokener ;
You can’t perform that action at this time.
0 commit comments