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

io.github.deweyjose.graphqlcodegen.Properties Maven / Gradle / Ivy

The newest version!
package io.github.deweyjose.graphqlcodegen;

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

import java.util.Map;

public class Properties {
    @Parameter
    private Map properties;

    @Override
    public String toString() {
        return properties.toString();
    } // to test

    public Map getProperties() {
        return properties;
    }

    public void setProperties(final Map properties) {
        this.properties = properties;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy