// <OLATCE-103> /** * <a href="http://www.openolat.org"> * OpenOLAT - Online Learning and Training</a><br> * <p> * Licensed under the Apache License, Version 2.0 (the "License"); <br> * you may not use this file except in compliance with the License.<br> * You may obtain a copy of the License at the * <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache homepage</a> * <p> * Unless required by applicable law or agreed to in writing,<br> * software distributed under the License is distributed on an "AS IS" BASIS, <br> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. <br> * See the License for the specific language governing permissions and <br> * limitations under the License. * <p> * Initial code contributed and copyrighted by<br> * BPS Bildungsportal Sachsen GmbH, http://www.bps-system.de * <p> */ package de.bps.course.nodes.vc; import org.olat.core.logging.OLog; import org.olat.core.logging.Tracing; import org.olat.core.logging.activity.LogModule; /** * Description:<br> * Virtual classroom configuration, setup by spring * * <P> * Initial Date: 28.08.2010 <br> * * @author Jens Lindner (jlindne4@hs-mittweida.de) * @author skoeber */ public class VCModul { static final OLog log = Tracing.createLoggerFor(LogModule.class); private String baseUrl, adminLogin, adminPassword, connectID, version; public String getBaseUrl() { return baseUrl; } public void setBaseUrl(String baseUrl) { this.baseUrl = baseUrl; } public String getAdminLogin() { return adminLogin; } public void setAdminLogin(String adminLogin) { this.adminLogin = adminLogin; } public String getAdminPassword() { return adminPassword; } public void setAdminPassword(String adminPassword) { this.adminPassword = adminPassword; } public String getConnectID() { return connectID; } public void setConnectID(String connectID) { this.connectID = connectID; } public String getVersion() { return version; } public void setVersion(String version) { this.version = version; } } // </OLATCE-103>