All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tibco.bw.maven.plugin.admin.dto.Reference Maven / Gradle / Ivy

Go to download

Plugin Code for Apache Maven and TIBCO BusinessWorks™. This is the Maven Plugin for BW6 and BWCE Build.

There is a newer version: 2.9.9
Show newest version
/*
 * Copyright(c) 2014 TIBCO Software Inc.
 * All rights reserved.
 *
 * This software is confidential and proprietary information of TIBCO Software Inc.
 *
 */

package com.tibco.bw.maven.plugin.admin.dto;

import javax.xml.bind.annotation.XmlElement;

/**
 * @author Tim Diekmann
 *
 * @since 1.0.0
 */
public class Reference {
    private String name;
    private String           wsdlInterface;
    private String             moduleName;
    private ReferenceBinding binding;

    /**
     * @return the wsdlInterface
     */
    @XmlElement
    public String getWsdlInterface() {
        return this.wsdlInterface;
    }

    /**
     * @param wsdlInterface
     *            the wsdlInterface to set
     */
    public void setWsdlInterface(final String wsdlInterface) {
        this.wsdlInterface = wsdlInterface;
    }

    /**
     *
     */
    public Reference() {
    }

    /**
     * @return the name
     */
    @XmlElement
    public String getName() {
        return this.name;
    }

    /**
     * @param name
     *            the name to set
     */
    public void setName(final String name) {
        this.name = name;
    }

    /**
     * @return the binding
     */
    @XmlElement
    public ReferenceBinding getBinding() {
        return this.binding;
    }

    /**
     * @param binding
     *            the binding to set
     */
    public void setBinding(final ReferenceBinding binding) {
        this.binding = binding;
    }

    /**
     * @return the moduleName
     */
    @XmlElement
    public String getModuleName() {
        return this.moduleName;
    }

    /**
     * @param moduleName
     *            the moduleName to set
     */
    public void setModuleName(final String moduleName) {
        this.moduleName = moduleName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy