View Javadoc
1   package de.dlr.shepard.integrationtests;
2   
3   import de.dlr.shepard.auth.apikey.entities.ApiKey;
4   import de.dlr.shepard.auth.users.entities.User;
5   import lombok.Value;
6   
7   @Value
8   public class UserWithApiKey {
9   
10    private User user;
11    private ApiKey apiKey;
12  }