String[] endpoints = restMethod.getInterface().getEndpoints();
if( endpoints.length > 0 )
testRequestConfig.setEndpoint( endpoints[0] );
testRequestConfig.addNewRequest();
StringToStringMapConfig parametersConfig = testRequestConfig.addNewParameters();
for( RestParamProperty property : restMethod.getDefaultParams() )
{
if( StringUtils.hasContent( property.getDefaultValue() ) )
{
Entry entry = parametersConfig.addNewEntry();
entry.setKey( property.getName() );
entry.setValue( property.getDefaultValue() );
}
}
}