All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.imunity.console.views.directory_browser.identities.BaseColumn Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
/*
 * 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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy