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

pl.edu.icm.unity.webadmin.SchemaManagementTab Maven / Gradle / Ivy

There is a newer version: 3.3.4
Show newest version
/*
 * Copyright (c) 2013 ICM Uniwersytet Warszawski All rights reserved.
 * See LICENCE.txt file for licensing information.
 */
package pl.edu.icm.unity.webadmin;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.config.ConfigurableBeanFactory;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;

import com.vaadin.ui.VerticalLayout;

import pl.edu.icm.unity.MessageSource;
import pl.edu.icm.unity.webadmin.attributeclass.AttributesClassesComponent;
import pl.edu.icm.unity.webadmin.attributetype.AttributeTypesComponent;
import pl.edu.icm.unity.webadmin.credentials.CredentialDefinitionsComponent;
import pl.edu.icm.unity.webadmin.credreq.CredentialRequirementsComponent;
import pl.edu.icm.unity.webadmin.identitytype.IdentityTypesComponent;
import pl.edu.icm.unity.webui.common.Styles;

/**
 * Tab containing management views for the data schema definition as attribute types, attribute classes
 * or identity types.
 * 
 * @author K. Benedyczak
 */
@Component
@Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE)
public class SchemaManagementTab  extends VerticalLayout
{
	private MessageSource msg;
	private MainTabPanel tabs;

	@Autowired
	public SchemaManagementTab(MessageSource msg, AttributeTypesComponent attributeTypes,
			CredentialDefinitionsComponent cdComponent, CredentialRequirementsComponent crComponent,
			AttributesClassesComponent acComponent, IdentityTypesComponent idTypes)
	{
		super();
		this.msg = msg;
		this.tabs = new MainTabPanel(attributeTypes, idTypes, acComponent, cdComponent, crComponent);
		this.tabs.addStyleName(Styles.vTabsheetMinimal.toString());
		initUI();
	}

	private void initUI()
	{
		setMargin(false);
		setSpacing(false);
		setCaption(msg.getMessage("SchemaManagementTab.caption"));
		VerticalLayout wrapper = new VerticalLayout();
		wrapper.setSpacing(false);
		wrapper.addComponent(tabs);
		wrapper.setSizeFull();
		addComponent(wrapper);
		setSizeFull();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy