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

org.camunda.bpm.engine.impl.identity.Authentication Maven / Gradle / Ivy

There is a newer version: 7.23.0-alpha2
Show newest version
/* 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.camunda.bpm.engine.impl.identity;

import java.util.ArrayList;
import java.util.List;


/**
 * 

Allows to expose the id of the currently authenticated user and his * groups to the process engine.

* *

The current authentication is managed using a Thread Local. The value can * be set using {@link #setCurrentAuthentication(String, List)}, * retrieved using {@link #getCurrentAuthentication()} and cleared * using {@link #clearCurrentAuthentication()}.

* *

Users typically do not use this class directly but rather use * the corresponding Service API methods: *

    *
  • *
*

* * @author Tom Baeyens * @author Daniel Meyer */ public class Authentication { protected String authenticatedUserId; protected List authenticatedGroupIds; public Authentication() { } public Authentication(String authenticatedUserId, List groupIds) { this.authenticatedUserId = authenticatedUserId; if(groupIds != null) { this.authenticatedGroupIds = new ArrayList(groupIds); } } public List getGroupIds() { return authenticatedGroupIds; } public String getUserId() { return authenticatedUserId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy