Coverage Summary for Class: UserTypeField (org.kitodo.data.elasticsearch.index.type.enums)
Class |
Class, %
|
Method, %
|
Line, %
|
UserTypeField |
100%
(1/1)
|
100%
(3/3)
|
100%
(17/17)
|
/*
* (c) Kitodo. Key to digital objects e. V. <contact@kitodo.org>
*
* This file is part of the Kitodo project.
*
* It is licensed under GNU General Public License version 3 or later.
*
* For the full copyright and license information, please read the
* GPL3-License.txt file that was distributed with this source code.
*/
package org.kitodo.data.elasticsearch.index.type.enums;
public enum UserTypeField implements TypeInterface {
ID("id"),
NAME("name"),
SURNAME("surname"),
LOGIN("login"),
LDAP_LOGIN("ldapLogin"),
ACTIVE("active"),
LOCATION("location"),
METADATA_LANGUAGE("metadataLanguage"),
ROLES("roles"),
FILTERS("filters"),
PROJECTS("projects"),
CLIENTS("clients"),
PROCESSING_TASKS("processingTasks");
private String name;
UserTypeField(String name) {
this.name = name;
}
@Override
public String toString() {
return name;
}
}