001/**
002 * Copyright 2005-2018 The Kuali Foundation
003 *
004 * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php
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 */
016package org.kuali.rice.krad.datadictionary;
017
018import java.util.List;
019
020/**
021 * This is a description of what this class does - mpham don't forget to fill this in.
022 *
023 * @author Kuali Rice Team (rice.collab@kuali.org)
024 */
025public class DocumentCollectionPath extends DataDictionaryDefinitionBase {
026    private static final long serialVersionUID = -8165456163213868710L;
027
028    protected String collectionPath;
029    protected List<String> paths;
030    protected DocumentCollectionPath nestedCollection;
031
032    /**
033     * @return the documentValues
034     */
035    public List<String> getDocumentValues() {
036        return this.paths;
037    }
038
039    /**
040     * @return the documentCollectionPath
041     */
042    public DocumentCollectionPath getNestedCollection() {
043        return this.nestedCollection;
044    }
045
046    /**
047     * @param paths the documentValues to set
048     */
049    public void setDocumentValues(List<String> paths) {
050        this.paths = paths;
051    }
052
053    /**
054     * @param documentCollectionPath the documentCollectionPath to set
055     */
056    public void setNestedCollection(DocumentCollectionPath documentCollectionPath) {
057        this.nestedCollection = documentCollectionPath;
058    }
059
060    /**
061     * @return the collectionPath
062     */
063    public String getCollectionPath() {
064        return this.collectionPath;
065    }
066
067    /**
068     * @param collectionPath the collectionPath to set
069     */
070    public void setCollectionPath(String collectionPath) {
071        this.collectionPath = collectionPath;
072    }
073}