/* * 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.panels.search; import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.Map; import org.apache.syncope.common.lib.types.AnyTypeKind; import org.apache.wicket.model.IModel; import org.apache.wicket.model.LoadableDetachableModel; public final class GroupSearchPanel extends AbstractSearchPanel { private static final long serialVersionUID = 5757183539269316263L; public static class Builder extends AbstractSearchPanel.Builder<GroupSearchPanel> { private static final long serialVersionUID = 6308997285778809578L; public Builder(final IModel<List<SearchClause>> model) { super(model); } @Override public GroupSearchPanel build(final String id) { return new GroupSearchPanel(id, this); } } private GroupSearchPanel(final String id, final GroupSearchPanel.Builder builder) { super(id, AnyTypeKind.GROUP, builder); } @Override protected void populate() { super.populate(); this.types = new LoadableDetachableModel<List<SearchClause.Type>>() { private static final long serialVersionUID = 5275935387613157437L; @Override protected List<SearchClause.Type> load() { List<SearchClause.Type> result = new ArrayList<>(); result.add(SearchClause.Type.ATTRIBUTE); result.add(SearchClause.Type.RESOURCE); result.add(SearchClause.Type.GROUP_MEMBER); return result; } }; this.groupNames = new LoadableDetachableModel<Map<String, String>>() { private static final long serialVersionUID = 5275935387613157437L; @Override protected Map<String, String> load() { return Collections.<String, String>emptyMap(); } }; } }