]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.security.ui.admin/src/org/argeo/security/ui/admin/editors/ArgeoUserEditorInput.java
Plug password management
[lgpl/argeo-commons.git] / org.argeo.security.ui.admin / src / org / argeo / security / ui / admin / editors / ArgeoUserEditorInput.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 /** Editor input for an Argeo user. */
23 public class ArgeoUserEditorInput implements IEditorInput {
24 private final String username;
25
26 public ArgeoUserEditorInput(String username) {
27 this.username = username;
28 }
29
30 public Object getAdapter(@SuppressWarnings("rawtypes") Class adapter) {
31 return null;
32 }
33
34 public boolean exists() {
35 return username != null;
36 }
37
38 public ImageDescriptor getImageDescriptor() {
39 return null;
40 }
41
42 public String getName() {
43 return username != null ? username : "<new user>";
44 }
45
46 public IPersistableElement getPersistable() {
47 return null;
48 }
49
50 public String getToolTipText() {
51 return username != null ? username : "<new user>";
52 }
53
54 public boolean equals(Object obj) {
55 if (!(obj instanceof ArgeoUserEditorInput))
56 return false;
57 if (((ArgeoUserEditorInput) obj).getUsername() == null)
58 return false;
59 return ((ArgeoUserEditorInput) obj).getUsername().equals(username);
60 }
61
62 public String getUsername() {
63 return username;
64 }
65 }