}
StateElement weatherE = new StateElement();
StateElement activityE = new StateElement();
StateElement userProfileE = new StateElement();
weatherE.setAttributeName("weather");
Value rainy = new SimpleSymbolic("rainy", null, 0.6f);
weatherE.setValue(rainy);
userProfileE.setAttributeName("user_profile");
SetValue profile = new SetValue();
Value[] prifleElements = {
new SimpleSymbolic("eating",null,0.6f),
new SimpleSymbolic("culture",null,0.2f),
new SimpleSymbolic("entertainment", null, 0.8f),
new SimpleSymbolic("sightseeing",null,0.2f)
};
profile.setValues(Arrays.asList(prifleElements));
userProfileE.setValue(profile);
activityE.setAttributeName("activity");
SimpleSymbolic walking = new SimpleSymbolic("walking",null,0.8f);
activityE.setValue(walking);