Polish SQL Server support and fix unit tests.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user