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

com.icthh.xm.commons.timeline.domain.ApiMaskRule Maven / Gradle / Ivy

package com.icthh.xm.commons.timeline.domain;

import lombok.Getter;
import lombok.Setter;
import org.springframework.stereotype.Component;

import java.util.List;

@Getter
@Setter
@Component
public class ApiMaskRule {

    private String endpointToMask;
    private List httpMethod;
    private List pathToMask;
    private String mask;
    private boolean maskRequest;
    private boolean maskResponse;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy