Currently using what is in master.
I've started to implement the GETing of variants for the node admin client
i posted earlier about and i think i might have run into a bug when trying
to get the Windows Variants.
here is a gist of what my current applications/variants looks like as JSON:
https://gist.github.com/lholmquist/44134f825373a5bce99624ac3d82c234
you will see i have 2 variants, one android and the other is a windows_wns
type.
using the endpoint "
http://locationofmyups/rest/applications/{PUSHAPPID}/{TYPE}" for android, i
get what i'm expecting, but when i do the windows one, dont get anything
returned
i'm actually running my ups locally, so i'm able to set a break point, and
it does break in the windows GET code here
https://github.com/aerogear/aerogear-unifiedpush-server/blob/master/jaxrs...
stepping through the getVariantsByType function,
https://github.com/aerogear/aerogear-unifiedpush-server/blob/master/jaxrs...
i noticed that the "type" variable here is of "class
org.jboss.aerogear.unifiedpush.api.WindowsVariant"
and the variant.getClass() is actually
org.jboss.aerogear.unifiedpush.api.WindowsWNSVariant
which is making the comparison fail and not return anything.
So is this a bug, or do i need to pass something else in to make this
work,
note: i've created all the applications and variants from the admin UI
screens