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 {
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    public SubDirectoryDescriptor clone() {
054        SubDirectoryDescriptor clone = new SubDirectoryDescriptor();
055        clone.name = name;
056        clone.isOptional = isOptional;
057        if (fields != null) {
058            clone.fields = new FieldDescriptor[fields.length];
059            for (int i = 0; i < fields.length; i++) {
060                clone.fields[i] = fields[i].clone();
061            }
062        }
063        return clone;
064    }
065}