001// 002// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 003// See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a> 004// Any modifications to this file will be lost upon recompilation of the source schema. 005// Generated on: 2018.12.10 at 03:02:30 PM PST 006// 007 008 009package org.microbean.jpa.jaxb; 010 011import javax.xml.bind.annotation.XmlAccessType; 012import javax.xml.bind.annotation.XmlAccessorType; 013import javax.xml.bind.annotation.XmlAttribute; 014import javax.xml.bind.annotation.XmlType; 015 016 017/** 018 * 019 * 020 * @Target({METHOD}) @Retention(RUNTIME) 021 * public @interface PostUpdate {} 022 * 023 * 024 * 025 * <p>Java class for post-update complex type. 026 * 027 * <p>The following schema fragment specifies the expected content contained within this class. 028 * 029 * <pre> 030 * <complexType name="post-update"> 031 * <complexContent> 032 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 033 * <sequence> 034 * <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> 035 * </sequence> 036 * <attribute name="method-name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> 037 * </restriction> 038 * </complexContent> 039 * </complexType> 040 * </pre> 041 * 042 * 043 */ 044@XmlAccessorType(XmlAccessType.FIELD) 045@XmlType(name = "post-update", propOrder = { 046 "description" 047}) 048public class PostUpdate { 049 050 protected String description; 051 @XmlAttribute(name = "method-name", required = true) 052 protected String methodName; 053 054 /** 055 * Gets the value of the description property. 056 * 057 * @return 058 * possible object is 059 * {@link String } 060 * 061 */ 062 public String getDescription() { 063 return description; 064 } 065 066 /** 067 * Sets the value of the description property. 068 * 069 * @param value 070 * allowed object is 071 * {@link String } 072 * 073 */ 074 public void setDescription(String value) { 075 this.description = value; 076 } 077 078 /** 079 * Gets the value of the methodName property. 080 * 081 * @return 082 * possible object is 083 * {@link String } 084 * 085 */ 086 public String getMethodName() { 087 return methodName; 088 } 089 090 /** 091 * Sets the value of the methodName property. 092 * 093 * @param value 094 * allowed object is 095 * {@link String } 096 * 097 */ 098 public void setMethodName(String value) { 099 this.methodName = value; 100 } 101 102}