All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dspace.submit.model.AccessConditionConfiguration Maven / Gradle / Ivy

The newest version!
/**
 * The contents of this file are subject to the license and copyright
 * detailed in the LICENSE and NOTICE files at the root of the source
 * tree and available online at
 *
 * http://www.dspace.org/license/
 */
package org.dspace.submit.model;
import java.util.List;

/**
 * Simple bean used to configure the access conditions section
 * in particular the set of available policies
 * and the possibility to modify discoverability.
 * 
* @author Mykhaylo Boychuk (mykhaylo.boychuk at 4science.com)
*/
public class AccessConditionConfiguration {

    private String name;
    private Boolean canChangeDiscoverable;
    private List options;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Boolean getCanChangeDiscoverable() {
        return canChangeDiscoverable;
    }

    public void setCanChangeDiscoverable(Boolean canChangeDiscoverable) {
        this.canChangeDiscoverable = canChangeDiscoverable;
    }

    public List getOptions() {
        return options;
    }

    public void setOptions(List options) {
        this.options = options;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy