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

net.minidev.ovh.api.xdsl.OvhWLAN Maven / Gradle / Ivy

There is a newer version: 1.0.17
Show newest version
package net.minidev.ovh.api.xdsl;

import net.minidev.ovh.api.xdsl.xdslmodemconfig.OvhChannelModeEnum;
import net.minidev.ovh.api.xdsl.xdslmodemconfig.OvhSecurityTypeEnum;

/**
 * WLAN Configuration of the Modem
 */
public class OvhWLAN {
	/**
	 * How the channel is chosen (Auto / Manual)
	 *
	 * canBeNull && readOnly
	 */
	public OvhChannelModeEnum channelMode;

	/**
	 * Name of the Wifi
	 *
	 * canBeNull && readOnly
	 */
	public String wifiName;

	/**
	 * Security (None | WEP | WPA | WPA2 | WPAandWPA2)
	 *
	 * canBeNull && readOnly
	 */
	public OvhSecurityTypeEnum securityType;

	/**
	 * Choice of a channel (When chosen, channelMode is set to Manual)
	 *
	 * canBeNull && readOnly
	 */
	public Long channel;

	/**
	 * Hide or show the Wifi
	 *
	 * canBeNull && readOnly
	 */
	public Boolean SSIDAdvertisementEnabled;

	/**
	 * WPA or WEP key
	 *
	 * canBeNull && readOnly
	 */
	public String securityKey;

	/**
	 * Service Set Identifier of the WLAN interface
	 *
	 * canBeNull && readOnly
	 */
	public String SSID;

	/**
	 * ID of the ongoing todo (NULL if none)
	 *
	 * canBeNull && readOnly
	 */
	public Long taskId;

	/**
	 * Wifi state
	 *
	 * canBeNull && readOnly
	 */
	public Boolean enabled;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy