Java源码示例:org.springframework.restdocs.operation.OperationRequestPartFactory

示例1
private OperationRequestPart buildPart() {
	return new OperationRequestPartFactory().create(this.name,
			this.submittedFileName, this.content, this.headers);
}
 
示例2
private OperationRequestPart buildPart() {
	return new OperationRequestPartFactory().create(this.name,
			this.submittedFileName, this.content, this.headers);
}
 
示例3
@Before
public void setUp() {
    preprocessor = new MultipartContentOperationPreprocessor();
    requestFactory = new OperationRequestFactory();
    partFactory = new OperationRequestPartFactory();
}