Example usage for org.springframework.mock.env MockPropertySource getPropertyNames

List of usage examples for org.springframework.mock.env MockPropertySource getPropertyNames

Introduction

In this page you can find the example usage for org.springframework.mock.env MockPropertySource getPropertyNames.

Prototype

@Override
    public String[] getPropertyNames() 

Source Link

Usage

From source file:com.cisco.cta.taxii.adapter.settings.PropertySourceHelper.java

public static MockPropertySource exclude(MockPropertySource all, String excludePrefix) {
    MockPropertySource source = new MockPropertySource();
    for (String key : all.getPropertyNames()) {
        if (!key.startsWith(excludePrefix)) {
            source.setProperty(key, all.getProperty(key));
        }//from w  w w. j  a  v  a  2s  .c o m
    }
    return source;
}

From source file:com.cisco.cta.taxii.adapter.settings.SettingsConfigurationTest.java

private MockPropertySource exclude(MockPropertySource all, String excludePrefix) {
    MockPropertySource source = new MockPropertySource();
    for (String key : all.getPropertyNames()) {
        if (!key.startsWith(excludePrefix)) {
            source.setProperty(key, all.getProperty(key));
        }//from w  ww  . j  ava 2 s .c o  m
    }
    return source;
}