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

org.pac4j.vertx.handler.impl.CallbackHandlerOptions Maven / Gradle / Ivy

The newest version!
/*
  Copyright 2015 - 2015 pac4j organization

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
 */
package org.pac4j.vertx.handler.impl;

import lombok.Getter;
import lombok.Setter;
import lombok.experimental.Accessors;

/**
 * Vert.x-style options class for a callback handler
 * @since 2.0.0
 */
@Accessors(chain=true)
public class CallbackHandlerOptions {

    @Getter @Setter
    private String defaultUrl;

    @Getter @Setter
    private Boolean saveInSession;

    @Getter @Setter
    private Boolean multiProfile;

    @Getter @Setter
    private Boolean renewSession;

    @Getter @Setter
    private String defaultClient;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy