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

com.highway2urhell.domain.EntryPathParam Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package com.highway2urhell.domain;

public class EntryPathParam {

    private String key;
    private String value;
    private TypeParam typeParam;

    public String getKey() {
        return key;
    }

    public void setKey(String key) {
        this.key = key;
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }


    

	public TypeParam getTypeParam() {
		return typeParam;
	}

	public void setTypeParam(TypeParam typeParam) {
		this.typeParam = typeParam;
	}

	@Override
    public String toString() {
        return "EntryPathParam [key=" + key + ", value=" + value + ", typeParam=" + typeParam + "]";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy