com.sap.cds.impl.SystemPropertyDataStoreConfiguration Maven / Gradle / Ivy
The newest version!
package com.sap.cds.impl;
import com.sap.cds.DataStoreConfiguration;
public class SystemPropertyDataStoreConfiguration implements DataStoreConfiguration {
@Override
public String getProperty(String key) {
return System.getProperty(key);
}
}