I have interface: ``` public interface WithId { ...
# announcements
e
I have interface:
Copy code
public interface WithId {
    @Nullable int getId();
    void  setId(@Nullable int id);
}