| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
package org.kuali.rice.core.impl.jaxb; |
| 17 | |
|
| 18 | |
import java.util.List; |
| 19 | |
|
| 20 | |
import javax.xml.bind.annotation.XmlAccessType; |
| 21 | |
import javax.xml.bind.annotation.XmlAccessorType; |
| 22 | |
import javax.xml.bind.annotation.XmlAnyElement; |
| 23 | |
import javax.xml.bind.annotation.XmlElement; |
| 24 | |
import javax.xml.bind.annotation.XmlRootElement; |
| 25 | |
import javax.xml.bind.annotation.XmlType; |
| 26 | |
|
| 27 | |
import org.kuali.rice.core.api.CoreConstants; |
| 28 | |
import org.kuali.rice.core.api.mo.AbstractDataTransferObject; |
| 29 | |
import org.kuali.rice.core.util.jaxb.RiceXmlListAdditionListener; |
| 30 | |
import org.kuali.rice.kim.impl.jaxb.PermissionDataXmlDTO; |
| 31 | |
import org.kuali.rice.kim.impl.jaxb.RoleDataXmlDTO; |
| 32 | |
import org.w3c.dom.Element; |
| 33 | |
|
| 34 | |
|
| 35 | |
|
| 36 | |
|
| 37 | |
|
| 38 | |
|
| 39 | |
|
| 40 | |
|
| 41 | |
|
| 42 | 0 | @XmlRootElement(name="data") |
| 43 | |
@XmlAccessorType(XmlAccessType.FIELD) |
| 44 | |
@XmlType(name="DataType", propOrder={"permissionData", "roleData", CoreConstants.CommonElements.FUTURE_ELEMENTS}) |
| 45 | |
public class DataXmlDTO extends AbstractDataTransferObject implements RiceXmlListAdditionListener<Element> { |
| 46 | |
|
| 47 | |
private static final long serialVersionUID = 1L; |
| 48 | |
|
| 49 | |
@XmlElement(name="permissionData") |
| 50 | |
private PermissionDataXmlDTO permissionData; |
| 51 | |
|
| 52 | |
@XmlElement(name="roleData") |
| 53 | |
private RoleDataXmlDTO roleData; |
| 54 | |
|
| 55 | 0 | @XmlAnyElement |
| 56 | |
private final List<Element> _futureElements = null; |
| 57 | |
|
| 58 | 0 | public DataXmlDTO() {} |
| 59 | |
|
| 60 | 0 | public DataXmlDTO(PermissionDataXmlDTO permissionData, RoleDataXmlDTO roleData) { |
| 61 | 0 | this.permissionData = permissionData; |
| 62 | 0 | this.roleData = roleData; |
| 63 | 0 | } |
| 64 | |
|
| 65 | |
|
| 66 | |
|
| 67 | |
|
| 68 | |
public PermissionDataXmlDTO getPermissionData() { |
| 69 | 0 | return this.permissionData; |
| 70 | |
} |
| 71 | |
|
| 72 | |
|
| 73 | |
|
| 74 | |
|
| 75 | |
public void setPermissionData(PermissionDataXmlDTO permissionData) { |
| 76 | 0 | this.permissionData = permissionData; |
| 77 | 0 | } |
| 78 | |
|
| 79 | |
|
| 80 | |
|
| 81 | |
|
| 82 | |
public RoleDataXmlDTO getRoleData() { |
| 83 | 0 | return this.roleData; |
| 84 | |
} |
| 85 | |
|
| 86 | |
|
| 87 | |
|
| 88 | |
|
| 89 | |
public void setRoleData(RoleDataXmlDTO roleData) { |
| 90 | 0 | this.roleData = roleData; |
| 91 | 0 | } |
| 92 | |
|
| 93 | |
|
| 94 | |
|
| 95 | |
|
| 96 | |
@Override |
| 97 | |
public void newItemAdded(Element item) { |
| 98 | |
|
| 99 | 0 | } |
| 100 | |
} |