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

org.artifact.protocol.ProtocolSend Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package org.artifact.protocol;

import java.util.Map;

import lombok.Data;

@Data
public class ProtocolSend {
	private short id;
	private String requestName;
	private Map requestParameter;
	private Map responseParameter;
	private String remark;
	
	public ProtocolSend(short id, String requestName, Map requestParameter,
			Map responseParameter, String remark) {
		super();
		this.id = id;
		this.requestName = requestName;
		this.requestParameter = requestParameter;
		this.responseParameter = responseParameter;
		this.remark = remark;
	}
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy