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

org.springframework.social.google.config.boot.GoogleProperties Maven / Gradle / Ivy

The newest version!
package org.springframework.social.google.config.boot;

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

@ConfigurationProperties("spring.social.google")
public class GoogleProperties {
    /**
     * Application id.
     */
    private String appId;

    /**
     * Application secret.
     */
    private String appSecret;

    public String getAppId() {
        return this.appId;
    }

    public void setAppId(String appId) {
        this.appId = appId;
    }

    public String getAppSecret() {
        return this.appSecret;
    }

    public void setAppSecret(String appSecret) {
        this.appSecret = appSecret;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy