Polish SQL Server support and fix unit tests.

This commit is contained in:
Scott Frederick
2015-07-24 11:13:53 -05:00
parent 9e78abe2fc
commit 9b4139c8dd
2 changed files with 13 additions and 11 deletions

View File

@@ -2,15 +2,14 @@ package org.springframework.cloud.cloudfoundry;
import org.springframework.cloud.service.common.SqlServerServiceInfo;
public class SqlServerServiceInfoCreator extends
RelationalServiceInfoCreator<SqlServerServiceInfo> {
public class SqlServerServiceInfoCreator extends RelationalServiceInfoCreator<SqlServerServiceInfo> {
public SqlServerServiceInfoCreator() {
super(new Tags(), SqlServerServiceInfo.SQLSERVER_SCHEME); }
super(new Tags(), SqlServerServiceInfo.SQLSERVER_SCHEME);
}
@Override
public SqlServerServiceInfo createServiceInfo(String id, String url) {
return new SqlServerServiceInfo(id, url);
}
}