blob: 1ebddc60f6bca36eaafb3340af0914ff9394e3de (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/**
* Created by vitalyster on 15.11.2016.
*/
@XmlSchema(
namespace="http://juick.com/message",
elementFormDefault = XmlNsForm.QUALIFIED,
xmlns={
@XmlNs(prefix="", namespaceURI="http://juick.com/message"),
@XmlNs(prefix="user", namespaceURI="http://juick.com/user")
}
)
package com.juick;
import javax.xml.bind.annotation.XmlNs;
import javax.xml.bind.annotation.XmlNsForm;
import javax.xml.bind.annotation.XmlSchema;
|