com.sap.hana.cloud.hcp.service.common.SAPDBServiceInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-cloud-sap-connector Show documentation
Show all versions of spring-cloud-sap-connector Show documentation
Spring Cloud Connector for SAP HANA Cloud Platform (HCP)
package com.sap.hana.cloud.hcp.service.common;
import java.util.logging.Logger;
import org.springframework.cloud.service.ServiceInfo.ServiceLabel;
import org.springframework.cloud.service.common.RelationalServiceInfo;
@ServiceLabel("SAPDB")
public class SAPDBServiceInfo extends RelationalServiceInfo
{
/**
* {@link Logger} instance used for logging/tracing.
*/
@SuppressWarnings("unused")
private final static Logger LOG = Logger.getLogger(SAPDBServiceInfo.class.getName());
public static final String JDBC_URL_TYPE = "sapdb";
public static final String URI_SCHEME = "sapdb";
public SAPDBServiceInfo(String id, String url)
{
super(id, url, JDBC_URL_TYPE);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy