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

com.redhat.lightblue.rest.audit.LightblueResource Maven / Gradle / Ivy

There is a newer version: 2.32.0
Show newest version
package com.redhat.lightblue.rest.audit;

import java.util.regex.Pattern;

/**
 * Represent the '/crud' and '/metadata' rest context path Created by lcestari
 * on 4/10/15.
 */
public enum LightblueResource {
    CRUD("/+data/*"), METADATA("/+metadata/*");

    private final Pattern pattern;

    LightblueResource(String pattern) {
        this.pattern = Pattern.compile(pattern);
    }

    public Pattern getPattern() {
        return pattern;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy