-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Coupon.type to enum #182
Coupon.type to enum #182
Conversation
360f534
to
ce88d26
Compare
ce88d26
to
9ae079c
Compare
Mark old fields in Coupon as deprecated since this version
@Query( "product" ) Integer product, @Query( "createdAfter" ) ISO8601Date createdAfter, | ||
@Query( "unused" ) Boolean unused, @Query( "reusable" ) boolean reusable ); | ||
|
||
// TODO parameter object |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix date format madness
@Override | ||
public Object put( String key, Object value ) | ||
{ | ||
if ( value == null ) return super.remove( key ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔝
import java.text.SimpleDateFormat; | ||
import java.util.Date; | ||
|
||
abstract class ClientDate |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
DateRepresentation
? AbstractDateDeserializer
?
f6a5da8
to
560a1ed
Compare
No description provided.