diff options
| author | clemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2008-09-03 15:06:39 +0000 | 
|---|---|---|
| committer | clemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2008-09-03 15:06:39 +0000 | 
| commit | 3099f0f157d6a1f6c9df2183833b3279b44211f0 (patch) | |
| tree | 566925b577110d4af9ea9841daa8466624742df4 | |
| parent | 838aaacdd713d262801aa99ff161866a8939ec11 (diff) | |
| download | mocca-3099f0f157d6a1f6c9df2183833b3279b44211f0.tar.gz mocca-3099f0f157d6a1f6c9df2183833b3279b44211f0.tar.bz2 mocca-3099f0f157d6a1f6c9df2183833b3279b44211f0.zip | |
accesscontrol config
git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@11 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4
| -rw-r--r-- | bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Action.java | 18 | 
1 files changed, 7 insertions, 11 deletions
| diff --git a/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Action.java b/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Action.java index b9c8fa83..b4ae938c 100644 --- a/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Action.java +++ b/bkucommon/src/main/java/at/gv/egiz/bku/accesscontrol/config/Action.java @@ -2,7 +2,7 @@  // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-520   // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>   // Any modifications to this file will be lost upon recompilation of the source schema.  -// Generated on: 2008.09.03 at 02:52:44 PM GMT  +// Generated on: 2008.09.03 at 03:06:11 PM GMT   // @@ -11,9 +11,7 @@ package at.gv.egiz.bku.accesscontrol.config;  import javax.xml.bind.annotation.XmlAccessType;  import javax.xml.bind.annotation.XmlAccessorType;  import javax.xml.bind.annotation.XmlElement; -import javax.xml.bind.annotation.XmlIDREF;  import javax.xml.bind.annotation.XmlRootElement; -import javax.xml.bind.annotation.XmlSchemaType;  import javax.xml.bind.annotation.XmlType; @@ -27,7 +25,7 @@ import javax.xml.bind.annotation.XmlType;   *   <complexContent>   *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">   *       <choice> - *         <element name="ChainRef" type="{http://www.w3.org/2001/XMLSchema}IDREF"/> + *         <element name="ChainRef" type="{http://www.w3.org/2001/XMLSchema}string"/>   *         <element name="RuleAction">   *           <simpleType>   *             <restriction base="{http://www.w3.org/2001/XMLSchema}string"> @@ -53,9 +51,7 @@ import javax.xml.bind.annotation.XmlType;  public class Action {      @XmlElement(name = "ChainRef") -    @XmlIDREF -    @XmlSchemaType(name = "IDREF") -    protected Object chainRef; +    protected String chainRef;      @XmlElement(name = "RuleAction")      protected String ruleAction; @@ -64,10 +60,10 @@ public class Action {       *        * @return       *     possible object is -     *     {@link Object } +     *     {@link String }       *            */ -    public Object getChainRef() { +    public String getChainRef() {          return chainRef;      } @@ -76,10 +72,10 @@ public class Action {       *        * @param value       *     allowed object is -     *     {@link Object } +     *     {@link String }       *            */ -    public void setChainRef(Object value) { +    public void setChainRef(String value) {          this.chainRef = value;      } | 
