Hi Swetha,
You should add the "cascade" attribute to the OneToOne annotation.
Your annotation will then look like:
@OneToOne(fetch = FetchType.EAGER, cascade=CascadeType.ALL)
Adding the cascade annotation will persist, update, or delete the aggregated event when you take that action on the EventActivity.
-Shannon