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

io.github.opensabre.boot.entity.RestMappingInfo Maven / Gradle / Ivy

The newest version!
package io.github.opensabre.boot.entity;

import lombok.Data;
import lombok.NonNull;
import lombok.RequiredArgsConstructor;

/**
 * Rest注册信息
 */
@Data
@RequiredArgsConstructor
public class RestMappingInfo {
    /**
     * Rest 的path url,如:/user/{name}
     */
    @NonNull
    private String url;
    /**
     * Rest 的方法,如:GET/POST ..
     */
    @NonNull
    private String method;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy