/* The contents of this file are subject to the license and copyright terms * detailed in the license directory at the root of the source tree (also * available online at http://fedora-commons.org/license/). */ package fedora.server.storage.types; /** * A data structure containing information needed for the datastream mediation * service. * * @author Ross Wayland */ public class DatastreamMediation { public String mediatedDatastreamID = null; public String dsLocation = null; public String dsControlGroupType = null; public String callbackRole = null; public String callUsername = null; public String callPassword = null; public String methodName = null; public boolean callBasicAuth = false; public boolean callbackBasicAuth = false; public boolean callSSL = false; public boolean callbackSSL = false; }