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

com.github.dgrandemange.idempotencereceiver.examples.webapp.model.dto.ResourceIdentifier Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
package com.github.dgrandemange.idempotencereceiver.examples.webapp.model.dto;

import java.io.Serializable;

public class ResourceIdentifier implements Serializable {

	private static final long serialVersionUID = 1L;

	private String id;

	public String getId() {
		return id;
	}

	public void setId(String id) {
		this.id = id;
	}

	@Override
	public String toString() {
		return "ResourceIdentifier [id=" + id + "]";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy