kz.greetgo.security.util.MongoUtil 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!
The newest version!
package kz.greetgo.security.util;
import java.util.Date;
public class MongoUtil {
public static String toStr(Object objectValue) {
if (objectValue == null) {
return null;
}
if (objectValue instanceof String) {
return (String) objectValue;
}
throw new IllegalArgumentException("Cannot convert to string the value of "
+ objectValue.getClass() + " = " + objectValue);
}
public static Date toDate(Object objectValue) {
if (objectValue == null) {
return null;
}
if (objectValue instanceof Date) {
return (Date) objectValue;
}
throw new IllegalArgumentException("Cannot convert to Date the value of "
+ objectValue.getClass() + " = " + objectValue);
}
}