profile = profiles.get(parameterAddress.getChannelAsString());
} else if (profiles.containsKey(parameterAddress.getDeviceAsString())) {
profile = profiles.get(parameterAddress.getDeviceAsString());
} else {
Item item = getItemForParameter(parameterAddress);
profile = new StandardProfile(item, eventPublisher);
addProfile(item, parameterAddress, profile);
}
profile.valueChanged(parameterAddress, valueObject);
}