-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NIFI-14308 Make as-user optional in JsonConfigBasedBoxClientService
Signed-off-by: Pierre Villard <pierre.villard.fr@gmail.com> This closes #9759.
- Loading branch information
1 parent
1877e7c
commit f8024ee
Showing
4 changed files
with
106 additions
and
5 deletions.
There are no files selected for viewing
52 changes: 52 additions & 0 deletions
52
...e/nifi-box-services/src/main/java/org/apache/nifi/box/controllerservices/BoxAppActor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* | ||
* 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.box.controllerservices; | ||
|
||
import org.apache.nifi.components.DescribedValue; | ||
|
||
/** | ||
* An enumeration of the possible actors a Box App will act on behalf of. | ||
*/ | ||
public enum BoxAppActor implements DescribedValue { | ||
SERVICE_ACCOUNT("service-account", "Service Account", "Make Box API calls with a service account associated with the app"), | ||
IMPERSONATED_USER("impersonated-user", "Impersonated User", "Make Box API call on behalf of the specified Box user with as-user header"); | ||
|
||
private final String value; | ||
private final String displayName; | ||
private final String description; | ||
|
||
BoxAppActor(String value, String displayName, String description) { | ||
this.value = value; | ||
this.displayName = displayName; | ||
this.description = description; | ||
} | ||
|
||
@Override | ||
public String getValue() { | ||
return value; | ||
} | ||
|
||
@Override | ||
public String getDisplayName() { | ||
return displayName; | ||
} | ||
|
||
@Override | ||
public String getDescription() { | ||
return description; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters