/** * Created by vitalyster on 15.11.2016. */ @XmlSchema( namespace="http://juick.com/message", elementFormDefault = XmlNsForm.QUALIFIED, xmlns={ @XmlNs(prefix= StringUtils.EMPTY, namespaceURI="http://juick.com/message"), @XmlNs(prefix="user", namespaceURI="http://juick.com/user") } ) package com.juick; import org.apache.commons.lang3.StringUtils; import javax.xml.bind.annotation.XmlNs; import javax.xml.bind.annotation.XmlNsForm; import javax.xml.bind.annotation.XmlSchema;