]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.security.ui.admin/src/org/argeo/security/ui/admin/editors/UserEditorInput.java
Introduce aggregating node user admin
[lgpl/argeo-commons.git] / org.argeo.security.ui.admin / src / org / argeo / security / ui / admin / editors / UserEditorInput.java
1 /*
2 * Copyright (C) 2007-2012 Argeo GmbH
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.argeo.security.ui.admin.editors;
17
18 import org.eclipse.jface.resource.ImageDescriptor;
19 import org.eclipse.ui.IEditorInput;
20 import org.eclipse.ui.IPersistableElement;
21
22 /**
23 * Editor input for an user defined by unique name (usually a distinguished
24 * name).
25 */
26 public class UserEditorInput implements IEditorInput {
27 private final String username;
28
29 public UserEditorInput(String username) {
30 this.username = username;
31 }
32
33 public Object getAdapter(@SuppressWarnings("rawtypes") Class adapter) {
34 return null;
35 }
36
37 public boolean exists() {
38 return username != null;
39 }
40
41 public ImageDescriptor getImageDescriptor() {
42 return null;
43 }
44
45 public String getName() {
46 return username != null ? username : "<new user>";
47 }
48
49 public IPersistableElement getPersistable() {
50 return null;
51 }
52
53 public String getToolTipText() {
54 return username != null ? username : "<new user>";
55 }
56
57 public boolean equals(Object obj) {
58 if (!(obj instanceof UserEditorInput))
59 return false;
60 if (((UserEditorInput) obj).getUsername() == null)
61 return false;
62 return ((UserEditorInput) obj).getUsername().equals(username);
63 }
64
65 public String getUsername() {
66 return username;
67 }
68 }