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

io.telicent.jena.abac.SysABAC Maven / Gradle / Ivy

/*
 *  Copyright (c) Telicent Ltd.
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */

package io.telicent.jena.abac;

import io.telicent.jena.abac.assembler.SecuredDatasetAssembler;
import io.telicent.jena.abac.attributes.syntax.AEX;
import io.telicent.jena.abac.core.DatasetGraphABAC;
import io.telicent.jena.abac.core.VocabAuthzDataset;
import io.telicent.jena.abac.labels.LabelsGetter;
import org.apache.jena.atlas.lib.Version;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class SysABAC {

    /**
     * Security-Label : The default label that applies to a data payload.
     */
    public static final String hSecurityLabel = "Security-Label";

    /** Constant for "deny all" */
    public static final String denyLabel = AEX.strDENY;

    /** Constant for "allow all" */
    public static final String allowLabel = AEX.strALLOW;

    /**
     * System-wide default used when there isn't an appropriate label or an error occurred.
     * 

* Normally, a default attribute is associated with {@link DatasetGraphABAC} * via the {@link SecuredDatasetAssembler} configuration. */ public static final String systemDefaultTripleAttributes = denyLabel; /** * Result if there are no labels or label patterns configured for a dataset. * ({@link LabelsGetter} returns null). * @implNote * Used by {@code SecurityFilterByLabel}. */ public static final boolean DefaultChoiceNoLabels = true; public static Logger SYSTEM_LOG = LoggerFactory.getLogger("io.telicent.jena.abac"); public static Logger DEBUG_LOG = LoggerFactory.getLogger("io.telicent.abac.SecurityFilter"); /** The product name */ public static final String NAME = "RDF ABAC"; /** Software version taken from the jar file. */ public static final String VERSION = Version.versionForClass(SysABAC.class).orElse(""); public static void init() { VocabAuthzDataset.init(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy