[ 
https://issues.apache.org/jira/browse/NIFI-1884?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15289373#comment-15289373
 ] 

ASF GitHub Bot commented on NIFI-1884:
--------------------------------------

Github user jtstorck commented on a diff in the pull request:

    https://github.com/apache/nifi/pull/452#discussion_r63745403
  
    --- Diff: nifi-api/src/main/java/org/apache/nifi/authorization/Group.java 
---
    @@ -0,0 +1,115 @@
    +/*
    + * Licensed to the Apache Software Foundation (ASF) under one or more
    + * contributor license agreements.  See the NOTICE file distributed with
    + * this work for additional information regarding copyright ownership.
    + * The ASF licenses this file to You 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.apache.nifi.authorization;
    +
    +import java.util.Collections;
    +import java.util.HashSet;
    +import java.util.Objects;
    +import java.util.Set;
    +
    +/**
    + * A group that users can belong to.
    + */
    +public class Group {
    +
    +    private final String identifier;
    +
    +    private final String name;
    +
    +    private final Set<String> users;
    +
    +    /**
    +     * Constructs a new group with the given identifier and name.
    +     *
    +     * @param identifier a unique identifier for the group
    +     * @param name the name of the group
    +     */
    +    public Group(final String identifier, final String name) {
    +        this(identifier, name, null);
    +    }
    +
    +    /**
    +     * Constructs a new group with the given identifier, name, and users.
    +     *
    +     * @param identifier a unique identifier for the group
    +     * @param name the name of the group
    +     * @param users the list of user identifiers that belong to this group
    +     */
    +    public Group(final String identifier, final String name, final 
Set<String> users) {
    +        if (identifier == null || identifier.trim().isEmpty()) {
    +            throw new IllegalArgumentException("Identifier can not be null 
or empty");
    +        }
    +
    +        if (name == null || name.trim().isEmpty()) {
    +            throw new IllegalArgumentException("Name can not be null or 
empty");
    +        }
    +
    +        this.identifier = identifier;
    +        this.name = name;
    +        this.users = (users == null ? Collections.unmodifiableSet(new 
HashSet<>()) : Collections.unmodifiableSet(users));
    +    }
    +
    +    /**
    +     * @return the identifier of the group
    +     */
    +    public String getIdentifier() {
    +        return identifier;
    +    }
    +
    +    /**
    +     * @return the name of the group
    +     */
    +    public String getName() {
    +        return name;
    +    }
    +
    +    /**
    +     * @return the list of user identifiers that belong to this group
    +     */
    +    public Set<String> getUsers() {
    +        return users;
    +    }
    +
    +    @Override
    +    public boolean equals(Object obj) {
    +        if (obj == null) {
    +            return false;
    +        }
    +        if (getClass() != obj.getClass()) {
    +            return false;
    +        }
    +
    +        final Group other = (Group) obj;
    +        if (!Objects.equals(this.identifier, other.identifier)) {
    --- End diff --
    
    Can you just return the result of `Objects.equals(this.identifier, 
other.identifier)` here?


> Add User & Group API
> --------------------
>
>                 Key: NIFI-1884
>                 URL: https://issues.apache.org/jira/browse/NIFI-1884
>             Project: Apache NiFi
>          Issue Type: Sub-task
>          Components: Core Framework
>            Reporter: Bryan Bende
>            Assignee: Bryan Bende
>            Priority: Minor
>             Fix For: 1.0.0
>
>
> Define the API for  managing users, groups, and policies.
> This is to advance the work described in this feature proposal:
>  https://cwiki.apache.org/confluence/display/NIFI/Support+Authorizer+API
> The parent JIRA for all authorization work is NIFI-1550.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to