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

io.codearte.accurest.samples.camel.BookDeleted.groovy Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package io.codearte.accurest.samples.camel

import com.fasterxml.jackson.annotation.JsonCreator
import groovy.transform.CompileStatic

@CompileStatic
class BookDeleted implements Serializable {
	final String bookName

	@JsonCreator(mode = JsonCreator.Mode.PROPERTIES)
	BookDeleted(String bookName) {
		this.bookName = bookName
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy