Search in sources :

Example 1 with DeviceFixedIp

use of org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.DeviceFixedIp in project open-smart-grid-platform by OSGP.

the class ConfigurationManagementMapperTest method aSourceDeviceFixedIp.

private DeviceFixedIp aSourceDeviceFixedIp(final String ipAddress, final String netMask, final String gateWay) {
    final DeviceFixedIp deviceFixedIp = new DeviceFixedIp();
    deviceFixedIp.setGateWay(gateWay);
    deviceFixedIp.setIpAddress(ipAddress);
    deviceFixedIp.setNetMask(netMask);
    return deviceFixedIp;
}
Also used : DeviceFixedIp(org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.DeviceFixedIp)

Aggregations

DeviceFixedIp (org.opensmartgridplatform.adapter.ws.schema.core.configurationmanagement.DeviceFixedIp)1