pt.webdetails.cpf.repository.api.FileAccess.java Source code

Java tutorial

Introduction

Here is the source code for pt.webdetails.cpf.repository.api.FileAccess.java

Source

/*!
 * Copyright 2002 - 2015 Webdetails, a Pentaho company.  All rights reserved.
 *
 * This software was developed by Webdetails and is provided under the terms
 * of the Mozilla Public License, Version 2.0, or any later version. You may not use
 * this file except in compliance with the license. If you need a copy of the license,
 * please go to  http://mozilla.org/MPL/2.0/. The Initial Developer is Webdetails.
 *
 * Software distributed under the Mozilla Public License is distributed on an "AS IS"
 * basis, WITHOUT WARRANTY OF ANY KIND, either express or  implied. Please refer to
 * the license for the specific language governing your rights and limitations.
 */
package pt.webdetails.cpf.repository.api;

import org.apache.commons.lang.StringUtils;

public enum FileAccess {

    //TODO: last checked in RepositoryFilePermissions:
    //      READ, WRITE, DELETE,  ACL_MANAGEMENT,ALL
    READ, WRITE, EXECUTE, DELETE;
    //    @Deprecated
    //    CREATE,
    //    NONE;

    public static FileAccess parse(String fileAccess) {
        try {
            return FileAccess.valueOf(StringUtils.upperCase(fileAccess));
        } catch (Exception e) {
            return null;
        }
    }
}