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

com.smartnews.jpa_entity_generator.config.JDBCSettings Maven / Gradle / Ivy

There is a newer version: 0.99.9
Show newest version
package com.smartnews.jpa_entity_generator.config;

import lombok.Data;

import java.io.Serializable;

/**
 * JDBC connection settings.
 */
@Data
public class JDBCSettings implements Serializable {

    private String url;
    private String username;
    private String password;
    private String driverClassName;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy