1import org.checkerframework.checker.nullness.qual.Nullable; 2 3package com.google.cloud; 4 5class ServiceOptions<ServiceT extends Service<OptionsT>, OptionsT extends ServiceOptions<ServiceT, OptionsT>> { 6 @Nullable 7 static String getDefaultProjectId(); 8} 9