001/* 002 * Copyright 2016 Anyware Services 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 017package org.ametys.plugins.userdirectory.page; 018 019import org.ametys.plugins.repository.AmetysObjectFactory; 020import org.ametys.web.repository.page.virtual.AbstractConfigurableVirtualPage; 021import org.ametys.web.repository.page.virtual.ConfigurableVirtualZone; 022import org.ametys.web.repository.page.virtual.ConfigurableVirtualZoneItem; 023import org.ametys.web.repository.page.virtual.ConfigurableVirtualZoneItemFactory; 024 025/** 026 * {@link AmetysObjectFactory} handling {@link UserZoneItem}. 027 */ 028public class UserZoneItemFactory extends ConfigurableVirtualZoneItemFactory 029{ 030 /** 031 * Create a zone item with its page, zoneName and id 032 * @param page The zone item's page 033 * @param zoneName The zone's name 034 * @param zoneItemId The zone item's id 035 * @return The created <code>ConfigurableVirtualZoneItem</code> 036 */ 037 @Override 038 public ConfigurableVirtualZoneItem createZoneItem(AbstractConfigurableVirtualPage page, String zoneName, String zoneItemId) 039 { 040 return new UserZoneItem(page, ((ConfigurableVirtualZone) page.getZone(zoneName)).getZoneItemConfiguration(zoneItemId), getScheme(), this); 041 } 042}