All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.codearte.accurest.dsl.internal.ExecutionProperty.groovy Maven / Gradle / Ivy

The newest version!
package io.codearte.accurest.dsl.internal

import groovy.transform.CompileStatic

@CompileStatic
class ExecutionProperty {

	private static final String PLACEHOLDER_VALUE = '\\$it'

	final String executionCommand

	ExecutionProperty(String executionCommand) {
		this.executionCommand = executionCommand
	}

	String insertValue(String valueToInsert) {
		return executionCommand.replaceAll(PLACEHOLDER_VALUE, valueToInsert)
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy