All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.alex1304.jdash.client.AbstractAuthenticatedGDRequest Maven / Gradle / Ivy

There is a newer version: 3.3.10
Show newest version
package com.github.alex1304.jdash.client;

import java.util.Objects;

abstract class AbstractAuthenticatedGDRequest extends AbstractGDRequest {

	final AuthenticatedGDClient client;
	
	AbstractAuthenticatedGDRequest(AuthenticatedGDClient client) {
		super(client);
		this.client = Objects.requireNonNull(client);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy