We have a web service client, developed using Apache CXF. Inside our client class, we have this:
public class RunCode implements CallbackHandler
{
@Test
public void getView()
{
// Code
}
}
Now my question is: in which cases our classes need to implement the CallbackHandler?
And in the above code what is it doing exactly?