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

br.com.andrewribeiro.ribrest.RibrestEndpointConfiguratorContainer Maven / Gradle / Ivy

Go to download

Ribrest Framework - A simple Java framework that truly improve your productivity when developing restful based webservices.

There is a newer version: 1.27.0
Show newest version
package br.com.andrewribeiro.ribrest;

import br.com.andrewribeiro.ribrest.annotations.RibrestEndpointConfigurator;

/**
 *
 * @author Andrew Ribeiro
 */
class RibrestEndpointConfiguratorContainer {

    String method;
    String path;

    RibrestEndpointConfiguratorContainer fromRibrestEndpointConfigurator(RibrestEndpointConfigurator endpointConfigurator) {
        this.method = endpointConfigurator.method();
        this.path = endpointConfigurator.path();
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy