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

com.kilumanga.play.steam.secret.ApiKey Maven / Gradle / Ivy

The newest version!
/** 
 * 
 * Copyright (C) 2018 Amani
 *
 * This software may be modified and distributed under the terms
 * of the MIT license.  See the LICENSE file for details.
 */
package com.kilumanga.play.steam.secret;

import com.kilumanga.play.steam.constant.ExceptionMessage;

/**
 * @author Amani
 *
 */
public class ApiKey {
	private final String key;

	public ApiKey(String key) {
		if (key == null) {
			throw new IllegalArgumentException(ExceptionMessage.NULL_PARAMETER.getExceptionMessage());
		}
		if (key.isEmpty()) {
			throw new IllegalArgumentException(ExceptionMessage.INVALID_API_KEY.getExceptionMessage());
		}
		this.key = key;
	}

	public String getKey() {
		return key;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy