com.tibco.bw.maven.plugin.admin.dto.HRef Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bw6-maven-plugin Show documentation
Show all versions of bw6-maven-plugin Show documentation
Plugin Code for Apache Maven and TIBCO BusinessWorks™.
This is the Maven Plugin for BW6 and BWCE Build.
/*
* 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 HRef {
private String href;
public HRef() {
}
public HRef(final String href) {
this.href = href;
}
@XmlElement(name = "href")
public String getHref() {
return this.href;
}
public void setHref(final String href) {
this.href = href;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy