com.github.casside.cas.support.ClientServer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cas-x-support-clients Show documentation
Show all versions of cas-x-support-clients Show documentation
delegate authn plugins for cas server
The newest version!
package com.github.casside.cas.support;
import lombok.AccessLevel;
import lombok.Getter;
import lombok.Setter;
import lombok.experimental.Accessors;
import lombok.experimental.FieldDefaults;
@Accessors(chain = true)
@FieldDefaults(level = AccessLevel.PRIVATE)
@Getter
@Setter
public class ClientServer {
/**
* service name
*/
String name;
/**
* visit URL
*/
String url;
}