mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
- Minor fixes/enhancements git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2805 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
28 lines
670 B
Java
28 lines
670 B
Java
package org.alfresco.web.bean.content;
|
|
|
|
import org.alfresco.web.app.AlfrescoNavigationHandler;
|
|
|
|
/**
|
|
* Bean implementation of the "Set Content Properties" dialog.
|
|
*
|
|
* @author gavinc
|
|
*/
|
|
public class SetContentPropertiesDialog extends EditContentPropertiesDialog
|
|
{
|
|
@Override
|
|
protected String getDefaultCancelOutcome()
|
|
{
|
|
return super.getDefaultCancelOutcome() +
|
|
AlfrescoNavigationHandler.OUTCOME_SEPARATOR +
|
|
"browse";
|
|
}
|
|
|
|
@Override
|
|
protected String getDefaultFinishOutcome()
|
|
{
|
|
return super.getDefaultFinishOutcome() +
|
|
AlfrescoNavigationHandler.OUTCOME_SEPARATOR +
|
|
"browse";
|
|
}
|
|
}
|