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

org.opendaylight.netide.netiplib.ModuleAcknowledgeMessage Maven / Gradle / Ivy

There is a newer version: 0.3.4-Carbon
Show newest version
/*
 * Copyright (c) 2015 NetIDE Consortium and others.  All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v1.0 which accompanies this distribution,
 * and is available at http://www.eclipse.org/legal/epl-v10.html
 */
package org.opendaylight.netide.netiplib;

/**
 * Represents a ModuleAcknowledge message.
 * 

* Created by timvi on 24.09.2015. */ public class ModuleAcknowledgeMessage extends Message { private String moduleName; /** * Creates a new instance of the ModuleAcknowledgeMessage class. */ public ModuleAcknowledgeMessage() { super(new MessageHeader(), new byte[0]); header.setMessageType(MessageType.MODULE_ACKNOWLEDGE); } /** * Gets module name. * * @return the module name */ public String getModuleName() { return moduleName; } /** * Sets module name. * * @param moduleName the module name */ public void setModuleName(String moduleName) { this.moduleName = moduleName; } @Override public byte[] getPayload() { return this.moduleName.getBytes(); } @Override public String toString() { return "ModuleAcknowledgeMessage [Header=" + header.toString() + ",ModuleName=" + moduleName + "]"; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy