
com.github.becausetesting.httpclient.bean.RequestEntityMultipart Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
A common libraries used for testing framework.
package com.github.becausetesting.httpclient.bean;
import java.util.List;
public class RequestEntityMultipart implements RequestEntity {
/**
*
*/
private static final long serialVersionUID = 2682961872599839381L;
public enum MultipartMode {
BROWSER_COMPATIBLE, RFC_6532, STRICT;
}
public enum MultipartSubtype {
FORM_DATA, MIXED, DIGEST, MESSAGE, ALTERNATIVE, RELATED, REPORT, SIGNED, ENCRYPTED, X_MIXED_REPLACE, BYTERANGE;
@Override
public String toString() {
return this.name().toLowerCase().replaceAll("_", "-");
}
}
public MultipartSubtype getSubtype() {
return null;
}
public MultipartMode getMode() {
return null;
}
public List getBody(){
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy