
com.togocms.pns.bo.Push.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of togopns Show documentation
Show all versions of togopns Show documentation
Push Notification System (Apple/Google)
The newest version!
<?xml version="1.0" encoding="UTF-8"?> <bean cache="push"> <read name="id"> select id, token from pns_queue where id = ${this.id} limit 1 </read> <create> insert into pns_queue ( user_id, message_id, token, platform, creation_time, last_modified ) values ( ${this.userId}, ${this.messageId}, ${this.token}, ${this.platform}, ${this.creationTime}, ${this.lastModified} ) </create> <delete>delete from pns_queue where id = ${this.id}</delete> <curr-val>select LAST_INSERT_ID() as id</curr-val> </bean>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy