package net.tooan.ynpay.order.eadd; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for netOutPolicyResult complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="netOutPolicyResult"> * <complexContent> * <extension base="{http://eadd.center.tg.tiangu.net/}jwsResult"> * <sequence> * <element name="policy" type="{http://eadd.center.tg.tiangu.net/}policy" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "netOutPolicyResult", propOrder = { "policy" }) public class NetOutPolicyResult extends JwsResult { protected Policy policy; /** * Gets the value of the policy property. * * @return * possible object is * {@link Policy } * */ public Policy getPolicy() { return policy; } /** * Sets the value of the policy property. * * @param value * allowed object is * {@link Policy } * */ public void setPolicy(Policy value) { this.policy = value; } }