pull up Oracle URI scheme
This commit is contained in:
@@ -4,7 +4,7 @@ import org.springframework.cloud.service.common.OracleServiceInfo;
|
||||
|
||||
public class OracleServiceInfoCreator extends RelationalServiceInfoCreator<OracleServiceInfo> {
|
||||
public OracleServiceInfoCreator() {
|
||||
super(new Tags(), "oracle");
|
||||
super(new Tags(), OracleServiceInfo.URI_SCHEME);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@@ -5,8 +5,10 @@ import org.springframework.cloud.service.ServiceInfo;
|
||||
@ServiceInfo.ServiceLabel("oracle")
|
||||
public class OracleServiceInfo extends RelationalServiceInfo {
|
||||
|
||||
public static final String URI_SCHEME = "oracle";
|
||||
|
||||
public OracleServiceInfo(String id, String url) {
|
||||
super(id, url, "oracle");
|
||||
super(id, url, URI_SCHEME);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
Reference in New Issue
Block a user