IntegrationMappingDto.java

package com.tradecloud.dto.base;


import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;

/**
 * Created with IntelliJ IDEA.
 * User: ds
 * Date: 2014/07/23
 * Time: 3:32 PM
 * To change this template use File | Settings | File Templates.
 */
@XmlRootElement(name = "IntegrationMappingDto")
@XmlAccessorType(XmlAccessType.FIELD)
public class IntegrationMappingDto {

    @XmlAttribute(required = true)
    private String type;

    @XmlAttribute(required = true)
    private String name;

    @XmlAttribute(required = true)
    private String referenceKey;

    @XmlAttribute(required = true)
    private String integrationSystem;

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getReferenceKey() {
        return referenceKey;
    }

    public void setReferenceKey(String referenceKey) {
        this.referenceKey = referenceKey;
    }

    public String getIntegrationSystem() {
        return integrationSystem;
    }

    public void setIntegrationSystem(String integrationSystem) {
        this.integrationSystem = integrationSystem;
    }
}