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

com.flyfish.oauth.builder.RandomOAuthStateBuilder Maven / Gradle / Ivy

There is a newer version: 1.0.7
Show newest version
package com.flyfish.oauth.builder;

import java.util.Random;

/**
 * 最简单的随机数生成state
 * @author wangyu
 */
public class RandomOAuthStateBuilder implements OAuthStateBuilder {

    @Override
    public String build() {
        return "secret" + new Random().nextInt(999_999);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy