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

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

The newest version!
package io.codearte.accurest.dsl.internal
import groovy.transform.CompileStatic
import groovy.transform.EqualsAndHashCode
import groovy.transform.ToString

@EqualsAndHashCode(includeFields = true)
@ToString(includePackage = false, includeFields = true, ignoreNulls = true, includeNames = true)
@CompileStatic
class Header extends DslProperty {

	String name

	Header(String name, DslProperty dslProperty) {
		super(dslProperty.clientValue, dslProperty.serverValue)
		this.name = name
	}

	Header(String name, Object value) {
		super(value)
		this.name = name
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy