org.apereo.cas.MongoDbProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cas-server-support-configuration-cloud-mongo Show documentation
Show all versions of cas-server-support-configuration-cloud-mongo Show documentation
cas-server-support-configuration-cloud-mongo
The newest version!
package org.apereo.cas;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.index.Indexed;
import org.springframework.data.mongodb.core.mapping.Document;
import java.io.Serial;
import java.io.Serializable;
/**
* This is {@link MongoDbProperty}.
*
* @author Misagh Moayyed
* @since 5.0.0
*/
@Document
@Getter
@Setter
@EqualsAndHashCode
public class MongoDbProperty implements Serializable {
@Serial
private static final long serialVersionUID = -8152946700415601078L;
@Id
private String id;
@Indexed
private String name;
private Object value;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy