i have two annotations located in a file like this:
**file package-info.java**
@CallService(name ="My first kurento app")
@SipApplication(name = "default-name-sip-app", description = "default description of the SipApplication", displayName = "default-displayName")
package com.kurento.kmf.sip;
import javax.servlet.sip.annotation.SipApplication;
import com.kurento.kmf.sip.annotation.CallService;
I need that the value of name attribute from CallService goes to name attribute of @SipApplication in runtime.
I have some code inspired from this link and it looks like the value of the attribute has changed, but it doesnt work. The code is on pastebin. Please help.