authorize(store, DFA_USER_PROFILE_NAME);
// Create a DfaSession from the credential store. You will typically do this
// in a servlet interceptor for a web application or per separate thread
// of your offline application.
DfaSession dfaSession = createDfaSession(store, DFA_USER_PROFILE_NAME);
DfaServices dfaServices = new DfaServices();
runExample(dfaServices, dfaSession);
}