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

com.foreach.imageserver.admin.ImageServerAdminWebModuleSettings Maven / Gradle / Ivy

The newest version!
package com.foreach.imageserver.admin;

import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;

@Data
@ConfigurationProperties("image-server-admin")
public class ImageServerAdminWebModuleSettings
{
	public static final String IMAGE_SERVER_URL = "imageServerAdmin.imageServerUrl";
	public static final String ACCESS_TOKEN = "imageServerAdmin.accessToken";

	/**
	 * URL or base path for the ImageServer instance this admin should manage.
	 */
	private String imageServerUrl;

	/**
	 * Access token required for secured services.
	 * 

* Type: string */ private String accessToken; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy