org.beangle.security.Securities Maven / Gradle / Ivy
/*
* Beangle, Agile Development Scaffold and Toolkits.
*
* Copyright © 2005, The Beangle Software.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see .
*/
package org.beangle.security;
import java.security.Principal;
import org.beangle.security.core.context.SecurityContext;
import org.beangle.security.core.session.Session;
public final class Securities {
public static String getUsername() {
SecurityContext context = SecurityContext.get();
return context.getUser();
}
public static String getResource() {
return SecurityContext.get().getRequest().getResource().toString();
}
public static String getIp() {
return SecurityContext.get().getSession().getAgent().getIp();
}
public static Session getSession() {
SecurityContext context = SecurityContext.get();
return context.getSession();
}
public static Principal getPrincipal() {
SecurityContext context = SecurityContext.get();
Session session = context.getSession();
if (null == session) {
return null;
} else {
return session.getPrincipal();
}
}
public static boolean isRoot() {
return SecurityContext.get().isRoot();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy