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

org.sklsft.commons.rest.aspect.RestRequestContext Maven / Gradle / Ivy

There is a newer version: 5.0.0-M1
Show newest version
package org.sklsft.commons.rest.aspect;

import java.io.Serializable;

public class RestRequestContext implements Serializable {
	
private static final long serialVersionUID = 1L;
	
	public RestRequestContext(String requestId) {
		super();
		this.requestId = requestId;
	}
	
	
	/*
	 * properties
	 */
	private String requestId;

	
	/*
	 * getters and setters
	 */
	public String getRequestId() {
		return requestId;
	}
	public void setRequestId(String requestId) {
		this.requestId = requestId;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy