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

com.jslsolucoes.maven.plugin.resource.Token Maven / Gradle / Ivy

There is a newer version: 1.0.34
Show newest version
package com.jslsolucoes.maven.plugin.resource;

import org.apache.maven.plugins.annotations.Parameter;

public class Token {

    @Parameter(property = "match", required = true)
    private String match;

    @Parameter(property = "replace", required = true)
    private String replace;
    
    public Token() {
	
    }
    
    public Token(String match,String replace) {
	this.match = match;
	this.replace = replace;
    }

    public String getMatch() {
	return match;
    }

    public void setMatch(String match) {
	this.match = match;
    }

    public String getReplace() {
	return replace;
    }

    public void setReplace(String replace) {
	this.replace = replace;
    }

    @Override
    public String toString() {
	return "Token [match=" + match + ", replace=" + replace + "]";
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy