blob: 63a5098214ccca9c852b97dae1a58c3ee0481365 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/**
* 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;
|