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

org.anarres.dhcp.v6.options.DuidOption Maven / Gradle / Ivy

There is a newer version: 1.0.9
Show newest version
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package org.anarres.dhcp.v6.options;

import javax.annotation.Nonnull;

/**
 *
 * @author shevek
 */
public abstract class DuidOption extends Dhcp6Option {

    @Nonnull
    public byte[] getDuid() {
        return getData();
    }

    public void setDuid(@Nonnull byte[] duid) {
        setData(duid);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy