com.github.sdnwiselab.sdnwise.adapter.AdapterSoap Maven / Gradle / Ivy
/*
* Copyright (C) 2015 SDN-WISE
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package com.github.sdnwiselab.sdnwise.adapter;
import java.util.Map;
/**
* The adapter class for the communication with the OMNet++ simulator .
* Configuration data are passed using a Map which contains all
* the options needed in the constructor of the class.
*
* @author Sebastiano Milardo
* @version 0.1
*/
public class AdapterSoap extends Adapter {
/**
* Creates an AdapterOmnet object. The conf map is used to pass the
* configuration settings.
*
* @param conf contains the configuration data.
*/
public AdapterSoap(Map conf) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
/**
* Opens this adapter.
*
* @return a boolean indicating the correct completition of the operation
*/
@Override
public boolean open() {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
/**
* Closes this adapter.
*
* @return a boolean indicating the correct completition of the operation
*/
@Override
public boolean close() {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
/**
* Sends a byte array using this adapter.
*
* @param data the array to be sent
*/
@Override
public void send(byte[] data) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
}