@deprecated since 0.10.0 - will be removed before 1.0.0. Use Encoders#BASE64URL Encoder.BASE64URL or Decoders#BASE64URL Decoder.BASE64URL instead.
| 23 | * or {@link Decoders#BASE64URL Decoder.BASE64URL} instead. |
| 24 | */ |
| 25 | @Deprecated |
| 26 | public class Base64UrlCodec extends AbstractTextCodec { |
| 27 | |
| 28 | @Override |
| 29 | public String encode(byte[] data) { |
| 30 | return Encoders.BASE64URL.encode(data); |
| 31 | } |
| 32 | |
| 33 | @Override |
| 34 | public byte[] decode(String encoded) { |
| 35 | return Decoders.BASE64URL.decode(encoded); |
| 36 | } |
| 37 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…