-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ef8e7fa
commit 476ab98
Showing
3 changed files
with
75 additions
and
7 deletions.
There are no files selected for viewing
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
68 changes: 68 additions & 0 deletions
68
wecom-objects/src/main/java/cn/felord/domain/wedoc/smartsheet/SheetAuthRequest.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,68 @@ | ||
/* | ||
* Copyright (c) 2024. felord.cn | ||
* 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 | ||
* https://www.apache.org/licenses/LICENSE-2.0 | ||
* Website: | ||
* https://felord.cn | ||
* 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 cn.felord.domain.wedoc.smartsheet; | ||
|
||
import lombok.Data; | ||
|
||
import java.util.Set; | ||
|
||
/** | ||
* The type Sheet auth request. | ||
* todo | ||
* | ||
* @author dax | ||
* @since 2024 /12/25 | ||
*/ | ||
@Data | ||
public class SheetAuthRequest { | ||
private final String docid; | ||
private final Integer type; | ||
private final Set<String> ruleIdList; | ||
|
||
/** | ||
* Instantiates a new Sheet auth request. | ||
* | ||
* @param docid the docid | ||
* @param type the type | ||
* @param ruleIdList the rule id list | ||
*/ | ||
SheetAuthRequest(String docid, Integer type, Set<String> ruleIdList) { | ||
this.docid = docid; | ||
this.type = type; | ||
this.ruleIdList = ruleIdList; | ||
} | ||
|
||
/** | ||
* 全员权限 | ||
* | ||
* @param docId the doc id | ||
* @return the sheet auth request | ||
*/ | ||
public static SheetAuthRequest all(String docId) { | ||
return new SheetAuthRequest(docId, 1, null); | ||
} | ||
|
||
/** | ||
* 额外权限 | ||
* | ||
* @param docId the doc id | ||
* @param ruleIdList the rule id list | ||
* @return the sheet auth request | ||
*/ | ||
public static SheetAuthRequest additional(String docId, Set<String> ruleIdList) { | ||
return new SheetAuthRequest(docId, 2, ruleIdList); | ||
} | ||
} |