Skip to content
Snippets Groups Projects
DocumentationProperties.java 591 B
Newer Older
  • Learn to ignore specific revisions
  • package de.ozgcloud.admin;
    
    import org.springframework.boot.context.properties.ConfigurationProperties;
    import org.springframework.context.annotation.Configuration;
    
    import lombok.Getter;
    import lombok.Setter;
    
    @Setter
    @Getter
    @Configuration
    @ConfigurationProperties(prefix = DocumentationProperties.DOCUMENTATION_PROPERTIES_PREFIX)
    public class DocumentationProperties {
    
    	static final String DOCUMENTATION_PROPERTIES_PREFIX = "ozgcloud.user-assistance.documentation";
    
    
    	/*
    	 * Url pointing to the documentation (Benutzerleitfaden fuer die
    	 * Administration).
    	 */
    
    	private String url;
    
    }