com.smartnews.jpa_entity_generator.config.JDBCSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jpa-entity-generator Show documentation
Show all versions of jpa-entity-generator Show documentation
Lombok-wired JPA entity source code generator, Gradle and Maven supported.
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