Created
August 8, 2012 18:22
-
-
Save marianocapurro/3297280 to your computer and use it in GitHub Desktop.
DataMapper Input POJO Preview Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.mulesoft.dmia.example.InputPojo | |
InputPojo sample = new InputPojo() | |
sample.description = "Sample Description" | |
sample.id = 1000 | |
sample.creationTimestamp = System.currentTimeMillis() | |
sample.value1 = "Sample Name" | |
sample.value2 = "Sample un-used value" | |
return sample |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment