com.github.charlemaznable.bunny.client.domain.BunnyAddress Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bunny-client Show documentation
Show all versions of bunny-client Show documentation
Bunny rabbits will skip hand-in-hand with baby lambs across sunny green meadows.
package com.github.charlemaznable.bunny.client.domain;
public final class BunnyAddress {
public static final String CALCULATE = "/calculate";
public static final String CHARGE = "/charge";
public static final String QUERY = "/query";
public static final String SERVE = "/serve";
public static final String SERVE_CALLBACK = "/serve-callback";
private BunnyAddress() {
throw new UnsupportedOperationException();
}
}