Your application will have generated proxy classes for your entities. Find the proxy for your class, it will be in javasource/<yourmodulename>/proxies. Inside you will find get and set methods for each attribute in the entity. You can use the set methods to store the values. For example
yourEntity.setExpectedOut(outResult);
yourEntity.setExpectedIn(inResult);
I hope this helps.