com.github.hippoom.wechat.oauth.OpenId Maven / Gradle / Ivy
package com.github.hippoom.wechat.oauth;
import lombok.Value;
@Value
public class OpenId {
private String value;
private OpenId(String value) {
this.value = value;
}
public static OpenId valueOf(String value) {
return new OpenId(value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy