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

org.apereo.cas.configuration.model.CasServer Maven / Gradle / Ivy

There is a newer version: 6.6.4
Show newest version
package org.apereo.cas.configuration.model;

import lombok.Getter;
import lombok.Setter;

import java.io.Serializable;

/**
 * Configured CAS servers in the cluster that can be managed.
 *
 * @author Travis schmidt
 * @since 6.0
 */
@Getter
@Setter
public class CasServer implements Serializable {

    /**
     * User friendly name given to a server in the cluster.
     */
    private String name;

    /**
     * The full path to the /cas path of the server.
     */
    private String url;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy