/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.syncope.client.console.widgets; import de.agilecoders.wicket.core.markup.html.bootstrap.image.Icon; import de.agilecoders.wicket.extensions.markup.html.bootstrap.icon.FontAwesomeIconTypeBuilder; import java.util.List; import org.apache.syncope.client.console.wizards.resources.MappingItemTransformersTogglePanel; import org.apache.syncope.common.lib.to.MappingItemTO; import org.apache.wicket.ajax.AjaxRequestTarget; import org.apache.wicket.ajax.markup.html.AjaxLink; import org.apache.wicket.markup.html.link.AbstractLink; import org.apache.wicket.model.IModel; import org.apache.wicket.model.util.ListModel; public class MappingItemTransformerWidget extends AlertWidget<String> { private static final long serialVersionUID = 7667120094526529934L; private final MappingItemTO mapItem; private final MappingItemTransformersTogglePanel transformers; public MappingItemTransformerWidget( final String id, final MappingItemTO mapItem, final MappingItemTransformersTogglePanel transformers) { super(id); this.mapItem = mapItem; this.transformers = transformers; setOutputMarkupId(true); } @Override protected IModel<List<String>> getLatestAlerts() { return new ListModel<String>() { private static final long serialVersionUID = 1232998477036705088L; @Override public List<String> getObject() { return mapItem.getMappingItemTransformerClassNames(); } }; } @Override protected AbstractLink getEventsLink(final String linkid) { return new AjaxLink<String>(linkid) { private static final long serialVersionUID = -7978723352517770644L; @Override public void onClick(final AjaxRequestTarget target) { transformers.setMappingItem(target, MappingItemTransformerWidget.this.mapItem); transformers.toggle(target, true); } }; } @Override protected Icon getIcon(final String iconid) { return new Icon( iconid, FontAwesomeIconTypeBuilder.on(FontAwesomeIconTypeBuilder.FontAwesomeGraphic.magic).build()); } }