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

com.blade.mvc.route.PathBuilderMeta Maven / Gradle / Ivy

package com.blade.mvc.route;

import lombok.Builder;
import lombok.Data;

/**
 * build regex path
 * three kinds of forms
 * 

* 1. /path/ : common path * 2. /:param/ : common regex * 3, /name:regex : regex path * * @author : ccqy66 * @since */ @Data @Builder public class PathBuilderMeta { private String name; private String regex; private PathTypeEnum type; public enum PathTypeEnum { COMMON, PARAM, REGEX } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy