com.github.lontime.extpac4j.sql.DbProfileServiceSerializer Maven / Gradle / Ivy
The newest version!
package com.github.lontime.extpac4j.sql;
import com.github.lontime.extjson.JSONInstance;
import org.pac4j.core.util.serializer.Serializer;
/**
* DbProfileServiceSerializer.
* @author lontime
* @since 1.0
*/
public class DbProfileServiceSerializer implements Serializer {
@Override
public String encode(Object obj) {
return JSONInstance.get().toJSONString(obj);
}
@Override
public Object decode(String encoded) {
return JSONInstance.get().parse(encoded, DbProfile.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy