kz.greetgo.security.session.SessionStorageMongoBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greetgo.security Show documentation
Show all versions of greetgo.security Show documentation
Security infrastructure used in greetgo!
package kz.greetgo.security.session;
import com.mongodb.client.MongoCollection;
import org.bson.Document;
public class SessionStorageMongoBuilder {
private final MongoCollection collection;
public SessionStorageMongoBuilder(MongoCollection collection) {
this.collection = collection;
}
public SessionStorage build() {
return new SessionStorageMongo(collection);
}
}