001/*
002 * (C) Copyright 2006-2007 Nuxeo SA (http://nuxeo.com/) and others.
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 * Contributors:
017 *     Florent Guillaume
018 *
019 * $Id: SubDirectoryDescriptor.java 24597 2007-09-05 16:04:04Z fguillaume $
020 */
021
022package org.nuxeo.ecm.directory.multi;
023
024import java.util.Arrays;
025
026import org.nuxeo.common.xmap.annotation.XNode;
027import org.nuxeo.common.xmap.annotation.XNodeList;
028import org.nuxeo.common.xmap.annotation.XObject;
029
030/**
031 * @author Florent Guillaume
032 */
033@XObject("subDirectory")
034public class SubDirectoryDescriptor implements Cloneable {
035
036    @XNode("@name")
037    public String name;
038
039    @XNode("optional")
040    public boolean isOptional = false;
041
042    @XNodeList(value = "field", type = FieldDescriptor[].class, componentType = FieldDescriptor.class)
043    public FieldDescriptor[] fields;
044
045    @Override
046    public String toString() {
047        return String.format("{subdirectory name=%s fields=%s", name, Arrays.toString(fields));
048    }
049
050    /**
051     * @since 5.6
052     */
053    @Override
054    public SubDirectoryDescriptor clone() {
055        SubDirectoryDescriptor clone;
056        try {
057            clone = (SubDirectoryDescriptor) super.clone();
058        } catch (CloneNotSupportedException e) {
059            throw new AssertionError(e);
060        }
061        // basic fields are already copied by super.clone()
062        if (fields != null) {
063            clone.fields = new FieldDescriptor[fields.length];
064            for (int i = 0; i < fields.length; i++) {
065                clone.fields[i] = fields[i].clone();
066            }
067        }
068        return clone;
069    }
070}