aboutsummaryrefslogtreecommitdiffstats
path: root/bundle-plugin-test/test-bundles/non-public-api-usage/src/main/java/com/yahoo/test/UsingBothPublicApiAndNonPublicApiPackages.java
blob: f2c64661ad6ef24fccb3967f110c6bec39a467e7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.test;

public class UsingBothPublicApiAndNonPublicApiPackages {

    com.yahoo.vespa.defaults.Defaults publicFromDefaults = null;

    com.yahoo.text.BooleanParser publicFromVespajlib = null;


    ai.vespa.http.DomainName nonPublic1 = null;

    com.yahoo.io.ByteWriter nonPublic2 = null;

}