/* * 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.directory.studio.openldap.config.model; import java.util.ArrayList; import java.util.List; import org.apache.directory.api.ldap.model.name.Dn; /** * Java bean for the 'olcConfig' object class. * * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a> */ public class OlcConfig { /** The parent DN of the associated entry */ protected Dn parentDn; /** The list of auxiliary object classes */ protected List<AuxiliaryObjectClass> auxiliaryObjectClasses = new ArrayList<AuxiliaryObjectClass>(); /** * @param auxiliaryObjectClasses */ public void addAuxiliaryObjectClasses( AuxiliaryObjectClass... auxiliaryObjectClasses ) { for ( AuxiliaryObjectClass auxiliaryObjectClass : auxiliaryObjectClasses ) { this.auxiliaryObjectClasses.add( auxiliaryObjectClass ); } } /** * Gets the list of objects associated with the auxiliary classes. * * @return the list of objects associated with auxiliary classes. */ public List<AuxiliaryObjectClass> getAuxiliaryObjectClasses() { List<AuxiliaryObjectClass> copy = new ArrayList<AuxiliaryObjectClass>( auxiliaryObjectClasses.size() ); copy.addAll( auxiliaryObjectClasses ); return copy; } /** * Gets the number of auxiliary object classes. * * @return the number of auxiliary object classes */ public int getAuxiliaryObjectClassesSize() { return auxiliaryObjectClasses.size(); } /** * Gets the parent DN of the associated entry. * * @return the dn the parent DN of the asssociated entry */ public Dn getParentDn() { return parentDn; } /** * Sets the parent DN of the associated entry. * * @param dn the parent dn to set */ public void setParentDn( Dn parentDn ) { this.parentDn = parentDn; } /** * Copy a List of Strings into a new List of strings. * * @param original The list to copy * @return The copied list */ protected List<String> copyListString( List<String> original ) { if ( original != null ) { List<String> copy = new ArrayList<String>( original.size() ); copy.addAll( original ); return copy; } else { return new ArrayList<String>(); } } }