
de.codecentric.boot.admin.server.domain.values.Endpoint Maven / Gradle / Ivy
/*
* Copyright 2014-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.codecentric.boot.admin.server.domain.values;
import java.io.Serializable;
import org.springframework.util.Assert;
@lombok.Data
public final class Endpoint implements Serializable {
public static final String INFO = "info";
public static final String HEALTH = "health";
public static final String LOGFILE = "logfile";
public static final String ENV = "env";
public static final String HTTPTRACE = "httptrace";
public static final String THREADDUMP = "threaddump";
public static final String LIQUIBASE = "liquibase";
public static final String FLYWAY = "flyway";
public static final String ACTUATOR_INDEX = "actuator-index";
private final String id;
private final String url;
private Endpoint(String id, String url) {
Assert.hasText(id, "'id' must not be empty.");
Assert.hasText(url, "'url' must not be empty.");
this.id = id;
this.url = url;
}
public static Endpoint of(String id, String url) {
return new Endpoint(id, url);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy