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

com.sap.hana.cloud.hcp.service.common.SAPDBServiceInfo Maven / Gradle / Ivy

There is a newer version: 1.0.4.RELEASE
Show newest version
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