nl.vpro.nep.domain.TokenRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of media-nep Show documentation
Show all versions of media-nep Show documentation
Support for the several APIs of NEP that POMS is integrating with
package nl.vpro.nep.domain;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* @since 5.5
*/
@Data
@NoArgsConstructor
public class TokenRequest {
private String client_ip;
private String authorization_key;
public TokenRequest(String client_ip, String authorization_key) {
this.client_ip = client_ip;
this.authorization_key = authorization_key;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy