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: SourceDescriptor.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("source")
034public class SourceDescriptor implements Cloneable {
035
036    @XNode("@name")
037    public String name;
038
039    @XNode("@creation")
040    public boolean creation;
041
042    @XNodeList(value = "subDirectory", type = SubDirectoryDescriptor[].class, componentType = SubDirectoryDescriptor.class)
043    public SubDirectoryDescriptor[] subDirectories;
044
045    @Override
046    public String toString() {
047        return String.format("{source name=%s subDirectories=%s", name, Arrays.toString(subDirectories));
048    }
049
050    /**
051     * @since 5.6
052     */
053    @Override
054    public SourceDescriptor clone() {
055        SourceDescriptor clone;
056        try {
057            clone = (SourceDescriptor) super.clone();
058        } catch (CloneNotSupportedException e) {
059            throw new AssertionError(e);
060        }
061        // basic fields are already copied by super.clone()
062        if (subDirectories != null) {
063            clone.subDirectories = new SubDirectoryDescriptor[subDirectories.length];
064            for (int i = 0; i < subDirectories.length; i++) {
065                clone.subDirectories[i] = subDirectories[i].clone();
066            }
067        }
068        return clone;
069    }
070
071}