fix #8148: add widthHint to styledTextfield
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / dialog / selection / GrantedAuthoritySelectionDialog.java
1 /**
2 * Copyright (C) 2007 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9
10 package eu.etaxonomy.taxeditor.ui.dialog.selection;
11
12 import java.util.ArrayList;
13 import java.util.List;
14 import java.util.UUID;
15
16 import org.eclipse.swt.widgets.Shell;
17 import org.springframework.security.core.GrantedAuthority;
18
19 import eu.etaxonomy.cdm.api.service.IGrantedAuthorityService;
20 import eu.etaxonomy.cdm.common.CdmUtils;
21 import eu.etaxonomy.cdm.model.common.GrantedAuthorityImpl;
22 import eu.etaxonomy.cdm.persistence.dto.UuidAndTitleCache;
23 import eu.etaxonomy.taxeditor.newWizard.AbstractNewEntityWizard;
24 import eu.etaxonomy.taxeditor.newWizard.NewGrantedAuthorityWizard;
25 import eu.etaxonomy.taxeditor.store.CdmStore;
26 import eu.etaxonomy.taxeditor.ui.section.grantedAuthority.GrantedAuthorityLabelTextProvider;
27
28 /**
29 * @author a.kohlbecker
30 * @created Sept 12, 2011
31 */
32 public class GrantedAuthoritySelectionDialog extends AbstractFilteredCdmResourceSelectionDialog<GrantedAuthorityImpl> {
33
34 public static GrantedAuthority select(Shell shell, //ConversationHolder conversation,
35 GrantedAuthorityImpl authority){
36
37 GrantedAuthoritySelectionDialog dialog = new GrantedAuthoritySelectionDialog(shell,//conversation,
38 "Choose Granted Authority", false, GrantedAuthoritySelectionDialog.class.getCanonicalName(), authority);
39
40 return getSelectionFromDialog(dialog);
41 }
42
43 /**
44 * @param shell
45 * @param conversation
46 * @param title
47 * @param multi
48 * @param settings
49 * @param cdmObject
50 */
51 protected GrantedAuthoritySelectionDialog(Shell shell,//ConversationHolder conversation,
52 String title, boolean multi,
53 String settings, GrantedAuthorityImpl cdmObject) {
54 super(shell, //conversation,
55 title, multi, settings, cdmObject);
56 }
57
58 @Override
59 protected void callService(String pattern) {
60 List<GrantedAuthorityImpl> authorities = CdmStore.getService(IGrantedAuthorityService.class).list(GrantedAuthorityImpl.class, null, null, null, null);
61
62 model = new ArrayList<>();
63
64 for(GrantedAuthorityImpl authority : authorities){
65 if ( pattern == null || authority.getAuthority().matches(CdmUtils.quoteRegExWithWildcard(pattern) +".*")){
66 model.add(new UuidAndTitleCache<>(GrantedAuthorityImpl.class, authority.getUuid(), authority.getId(), String.format("%s", GrantedAuthorityLabelTextProvider.getText(authority))));
67 }
68 }
69
70 }
71
72 @Override
73 protected String[] getNewWizardText() {
74 return new String[]{"New GrantedAuthority"};
75 }
76
77 @Override
78 protected AbstractNewEntityWizard getNewEntityWizard(String parameter) {
79 return new NewGrantedAuthorityWizard();
80 }
81
82 @Override
83 protected GrantedAuthorityImpl getPersistentObject(UUID uuid) {
84 return CdmStore.getService(IGrantedAuthorityService.class).load(uuid);
85 }
86
87 @Override
88 protected String getTitle(GrantedAuthorityImpl authority) {
89 return authority != null ? GrantedAuthorityLabelTextProvider.getText(authority) : "";
90 }
91
92 }