
com.antiaction.raptor.dao.SecurityChain Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of raptor-dbl Show documentation
Show all versions of raptor-dbl Show documentation
Raptor database layer implementation.
The newest version!
/*
* Created on 15/09/2010
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package com.antiaction.raptor.dao;
import java.util.ArrayList;
import java.util.List;
public class SecurityChain {
public int id = -1;
public int permission_id = -1;
public List rules = new ArrayList();
public static SecurityChain getInstance(int permission_id) {
SecurityChain g = new SecurityChain();
g.permission_id = permission_id;
return g;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy