Skip to content

Commit

Permalink
1C-Company#103 Добавлены комментарии в модуль
Browse files Browse the repository at this point in the history
  • Loading branch information
VAGoncharov committed Apr 1, 2023
1 parent 05db959 commit 3d8df46
Showing 1 changed file with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,15 @@
import com.e1c.g5.v8.dt.check.settings.IssueType;
import com.google.inject.Inject;

/**
* Check the function Users.RolesAvailable. First param must contains exist roles.
* @author Vadim Goncharov
*/
public class UsersRolesAvailableRolesExistCheck
extends BasicCheck
{

private static final String CHECK_ID = "users-roles-available-role-exist";
private static final String CHECK_ID = "users-roles-available-role-exist"; //$NON-NLS-1$

private static final String COMMONMODULE_USERS_NAME = "Users"; //$NON-NLS-1$

Expand All @@ -59,6 +63,13 @@ public class UsersRolesAvailableRolesExistCheck

private final IScopeProvider scopeProvider;

/**
* Instantiates a new users roles available roles exist check.
*
* @param scopeProvider the scope provider
* @param qualifiedNameConverter the qualified name converter
* @param topObjectFqnGenerator the top object fqn generator
*/
@Inject
public UsersRolesAvailableRolesExistCheck(IScopeProvider scopeProvider,
IQualifiedNameConverter qualifiedNameConverter, ITopObjectFqnGenerator topObjectFqnGenerator)
Expand Down

0 comments on commit 3d8df46

Please sign in to comment.