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;
}
Aggregations