throws PAPIException {
FragmentAttributes attributes = (FragmentAttributes) papiAttributes;
// Get the current form fragment from the request context
Fragment fragment = context.getFragment(attributes.getName());
if (fragment != null) {
String value = attributes.getLinkText();
if (value != null) {
fragment.overrideLinkToText(value);
}
value = attributes.getBackLinkText();
if (value != null) {
fragment.overrideLinkFromText(value);
}
}
return CONTINUE_PROCESSING;
}