All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.filesys.server.auth.acl.AccessControl Maven / Gradle / Ivy

Go to download

Java file server with SMB, FTP/FTPS and NFS support, virtual filesystems, database filesystems

The newest version!
/*
 * Copyright (C) 2006-2010 Alfresco Software Limited.
 *
 * This file is part of Alfresco
 *
 * Alfresco 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.
 *
 * Alfresco 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 Alfresco. If not, see .
 */

package org.filesys.server.auth.acl;

import java.util.StringTokenizer;

import org.filesys.server.SrvSession;
import org.filesys.server.core.SharedDevice;

/**
 * Access Control Base Class
 *
 * 

Controls access to a shared filesystem. * * @author gkspencer */ public abstract class AccessControl { // Access control type/status public final static int NoAccess = 0; public final static int ReadOnly = 1; public final static int ReadWrite = 2; public final static int MaxLevel = 2; // Default access status, indicates that the access conrol did not apply public final static int Default = -1; // Access type strings private final static String[] _accessType = {"None", "Read", "Write"}; // Access control name and type private String m_name; private String m_type; // Access type private int m_access; /** * Class constructor * * @param name String * @param type String * @param access int */ protected AccessControl(String name, String type, int access) { setName(name); setType(type); m_access = access; } /** * Return the access control name * * @return String */ public final String getName() { return m_name; } /** * Return the access control type * * @return String */ public final String getType() { return m_type; } /** * Return the access control check type * * @return int */ public final int getAccess() { return m_access; } /** * Return the access control check type as a string * * @return String */ public final String getAccessString() { return _accessType[m_access]; } /** * Check if the specified session has access to the shared device. * * @param sess SrvSession * @param share SharedDevice * @param mgr AccessControlManager * @return int */ public abstract int allowsAccess(SrvSession sess, SharedDevice share, AccessControlManager mgr); /** * Return the index of a value from a list of valid values, or -1 if not valid * * @param val String * @param valid String[] * @param caseSensitive boolean * @return int */ protected final static int indexFromList(String val, String[] valid, boolean caseSensitive) { // Check if the value is valid if (val == null || val.length() == 0) return -1; // Search for the matching value in the valid list for (int i = 0; i < valid.length; i++) { // Check the current value in the valid list if (caseSensitive) { if (valid[i].equals(val)) return i; } else if (valid[i].equalsIgnoreCase(val)) return i; } // Value does not match any of the valid values return -1; } /** * Create a list of valid strings from a comma delimeted list * * @param str String * @return String[] */ protected final static String[] listFromString(String str) { // Check if the string is valid if (str == null || str.length() == 0) return null; // Split the comma delimeted string into an array of strings StringTokenizer token = new StringTokenizer(str, ","); int numStrs = token.countTokens(); if (numStrs == 0) return null; String[] list = new String[numStrs]; // Parse the string into a list of strings int i = 0; while (token.hasMoreTokens()) list[i++] = token.nextToken(); // Return the string list return list; } /** * Set the access control type * * @param typ String */ protected final void setType(String typ) { m_type = typ; } /** * Set the access control name * * @param name String */ protected final void setName(String name) { m_name = name; } /** * Return the access control type as a string * * @param access int * @return String */ public static final String asAccessString(int access) { if (access == Default) return "Default"; return _accessType[access]; } /** * Return the access control as a string * * @return String */ public String toString() { StringBuffer str = new StringBuffer(); str.append("["); str.append(getType()); str.append(":"); str.append(getName()); str.append(","); str.append(getAccessString()); str.append("]"); return str.toString(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy