io.imunity.console.views.directory_browser.identities.BaseColumn Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unity-server-console Show documentation
Show all versions of unity-server-console Show documentation
Task oriented web based administration UI
/*
* Copyright (c) 2021 Bixbit - Krzysztof Benedyczak. All rights reserved.
* See LICENCE.txt file for licensing information.
*/
package io.imunity.console.views.directory_browser.identities;
enum BaseColumn
{
entity("Identities.entity", false, false, 200),
type("Identities.type", true, false, 100),
identity("Identities.identity", true, false, 300),
status("Identities.status", true, false, 100),
local("Identities.local", true, true, 100),
dynamic("Identities.dynamic", true, true, 100),
credReq("Identities.credReq", true, true, 180),
target("Identities.target", true, true, 180),
realm("Identities.realm", true, true, 100),
remoteIdP("Identities.remoteIdP", true, true, 200),
profile("Identities.profile", true, true, 100),
scheduledOperation("Identities.scheduledOperation", true, true, 200);
public final String captionKey;
public final boolean collapsingAllowed;
public final boolean initiallyCollapsed;
public final int defWidth;
BaseColumn(String captionKey, boolean collapsingAllowed,
boolean initiallyCollapsed, int defWidth)
{
this.captionKey = captionKey;
this.collapsingAllowed = collapsingAllowed;
this.initiallyCollapsed = initiallyCollapsed;
this.defWidth = defWidth;
}
}