<dependency>
<groupId>com.atlassian.annotations</groupId>
<artifactId>annotations</artifactId>
<version>1.1.0</version>
</dependency>
import com.atlassian.annotations.NotNull;
import com.atlassian.annotations.Nullable;
public class MyLibraryClass {
public void process(@NotNull String input) {
}
public @Nullable String getResult() {
return null;
}
}