001/**
002 * Copyright 2010 The Kuali Foundation Licensed under the
003 * Educational Community License, Version 2.0 (the "License"); you may
004 * not use this file except in compliance with the License. You may
005 * obtain a copy of the License at
006 *
007 * http://www.osedu.org/licenses/ECL-2.0
008 *
009 * Unless required by applicable law or agreed to in writing,
010 * software distributed under the License is distributed on an "AS IS"
011 * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
012 * or implied. See the License for the specific language governing
013 * permissions and limitations under the License.
014 */
015
016package org.kuali.student.common.ws.binding;
017
018import javax.xml.bind.annotation.XmlAccessType;
019import javax.xml.bind.annotation.XmlAccessorType;
020import javax.xml.bind.annotation.XmlAttribute;
021import javax.xml.bind.annotation.XmlElement;
022import javax.xml.bind.annotation.XmlType;
023import java.io.Serializable;
024
025@XmlAccessorType(XmlAccessType.FIELD)
026@XmlType(name = "Attribute", propOrder = {
027        "key", "value" })
028public class JaxbAttribute implements Serializable{
029        private static final long serialVersionUID = 1L;
030        @XmlAttribute
031      String key;
032      @XmlElement
033      String value;
034    /**
035     *
036     */
037    public JaxbAttribute() {
038        super();
039    }
040    /**
041     * @param name
042     * @param value
043     */
044    public JaxbAttribute(String key, String value) {
045        super();
046        this.key = key;
047        this.value = value;
048    }
049}