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

com.binfast.adpter.openapi.model.annotation.EntryAnnotation Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package com.binfast.adpter.openapi.model.annotation;

/**
 * @author yu3.sun on 2022/10/1
 */
public class EntryAnnotation {

    private String annotationName;

    private String annotationFullyName;

    public static EntryAnnotation builder() {
        return new EntryAnnotation();
    }

    public String getAnnotationName() {
        return annotationName;
    }

    public EntryAnnotation setAnnotationName(String annotationName) {
        this.annotationName = annotationName;
        return this;
    }

    public String getAnnotationFullyName() {
        return annotationFullyName;
    }

    public EntryAnnotation setAnnotationFullyName(String annotationFullyName) {
        this.annotationFullyName = annotationFullyName;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy