001    /**
002     * Copyright 2010-2013 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     */
016    package org.kuali.common.jdbc;
017    
018    /**
019     * @deprecated
020     */
021    @Deprecated
022    public class JdbcMetaData {
023    
024            String databaseProductName;
025            String databaseProductVersion;
026            String driverName;
027            String driverVersion;
028            String url;
029            String username;
030    
031            public String getDatabaseProductName() {
032                    return databaseProductName;
033            }
034    
035            public void setDatabaseProductName(String databaseProductName) {
036                    this.databaseProductName = databaseProductName;
037            }
038    
039            public String getDatabaseProductVersion() {
040                    return databaseProductVersion;
041            }
042    
043            public void setDatabaseProductVersion(String databaseProductVersion) {
044                    this.databaseProductVersion = databaseProductVersion;
045            }
046    
047            public String getDriverName() {
048                    return driverName;
049            }
050    
051            public void setDriverName(String driverName) {
052                    this.driverName = driverName;
053            }
054    
055            public String getDriverVersion() {
056                    return driverVersion;
057            }
058    
059            public void setDriverVersion(String driverVersion) {
060                    this.driverVersion = driverVersion;
061            }
062    
063            public String getUrl() {
064                    return url;
065            }
066    
067            public void setUrl(String url) {
068                    this.url = url;
069            }
070    
071            public String getUsername() {
072                    return username;
073            }
074    
075            public void setUsername(String username) {
076                    this.username = username;
077            }
078    
079    }