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

org.kie.server.api.model.cases.CaseFile Maven / Gradle / Ivy

/*
 * Copyright 2016 Red Hat, Inc. and/or its affiliates.
 *
 * 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 org.kie.server.api.model.cases;

import java.util.HashMap;
import java.util.Map;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "case-file")
public class CaseFile {

    @XmlElement(name = "case-data")
    private Map data = new HashMap<>();

    @XmlElement(name = "case-user-assignments")
    private Map userAssignments = new HashMap<>();

    @XmlElement(name = "case-group-assignments")
    private Map groupAssignments = new HashMap<>();

    @XmlElement(name = "case-data-restrictions")
    private Map accessRestrictions = new HashMap<>();

    public Map getData() {
        return data;
    }

    public void setData(Map data) {
        this.data = data;
    }

    public Map getUserAssignments() {
        return userAssignments;
    }

    public void setUserAssignments(Map userAssignments) {
        this.userAssignments = userAssignments;
    }

    public Map getGroupAssignments() {
        return groupAssignments;
    }

    public void setGroupAssignments(Map groupAssignments) {
        this.groupAssignments = groupAssignments;
    }

    public Map getAccessRestrictions() {
        return accessRestrictions;
    }

    public void setAccessRestrictions(Map accessRestrictions) {
        this.accessRestrictions = accessRestrictions;
    }

    public static Builder builder() {
        return new Builder();
    }

    public static class Builder {

        private CaseFile caseFile = new CaseFile();

        public CaseFile build() {
            return caseFile;
        }

        public Builder data(Map data) {
            caseFile.setData(data);
            return this;
        }

        public Builder userAssignments(Map data) {
            caseFile.setUserAssignments(data);
            return this;
        }

        public Builder groupAssignments(Map data) {
            caseFile.setGroupAssignments(data);
            return this;
        }

        public Builder addUserAssignments(String role, String user) {
            caseFile.getUserAssignments().put(role, user);
            return this;
        }

        public Builder addGroupAssignments(String role, String group) {
            caseFile.getGroupAssignments().put(role, group);
            return this;
        }

        public Builder dataAccessRestrictions(Map accessRestrictions) {
            caseFile.setAccessRestrictions(accessRestrictions);
            return this;
        }

        public Builder addDataAccessRestrictions(String dataItem, String... roles) {
            String[] existingRestrictions = caseFile.getAccessRestrictions().get(dataItem);
            if (existingRestrictions == null) {
                existingRestrictions = roles;
            } else {
                String[] result = new String[existingRestrictions.length + roles.length];
                System.arraycopy(existingRestrictions, 0, result, 0, existingRestrictions.length);
                System.arraycopy(roles, 0, result, existingRestrictions.length, roles.length);

                existingRestrictions = result;
            }

            caseFile.getAccessRestrictions().put(dataItem, existingRestrictions);
            return this;
        }
    }

    @Override
    public String toString() {
        return "CaseFile{" +
                "data=" + data +
                ", userAssignments=" + userAssignments +
                ", groupAssignments=" + groupAssignments +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy