com.jayway.restassured.internal.MultiPartSpecificationImpl.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-assured Show documentation
Show all versions of rest-assured Show documentation
Java DSL for easy testing of REST services
package com.jayway.restassured.internal
import com.jayway.restassured.specification.MultiPartSpecification
class MultiPartSpecificationImpl implements MultiPartSpecification {
def content
def String controlName
def String mimeType
def String charset
def String fileName
def Object getContent() {
return content
}
def String getControlName() {
return controlName
}
def String getMimeType() {
return mimeType
}
def String getCharset() {
return charset
}
def String getFileName() {
return fileName
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy