Skip to content

Package: MfaOptionQueryImpl

MfaOptionQueryImpl

nameinstructionbranchcomplexitylinemethod
MfaOptionQueryImpl()
M: 3 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%
MfaOptionQueryImpl(KapuaId)
M: 6 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 3 C: 0
0%
M: 1 C: 0
0%

Coverage

1: /*******************************************************************************
2: * Copyright (c) 2020, 2022 Eurotech and/or its affiliates and others
3: *
4: * This program and the accompanying materials are made
5: * available under the terms of the Eclipse Public License 2.0
6: * which is available at https://www.eclipse.org/legal/epl-2.0/
7: *
8: * SPDX-License-Identifier: EPL-2.0
9: *
10: * Contributors:
11: * Eurotech - initial API and implementation
12: *******************************************************************************/
13: package org.eclipse.kapua.service.authentication.credential.mfa.shiro;
14:
15: import org.eclipse.kapua.commons.model.query.AbstractKapuaQuery;
16: import org.eclipse.kapua.model.id.KapuaId;
17: import org.eclipse.kapua.service.authentication.credential.mfa.MfaOption;
18: import org.eclipse.kapua.service.authentication.credential.mfa.MfaOptionQuery;
19:
20: /**
21: * {@link MfaOption} query implementation.
22: *
23: * @since 1.3.0
24: */
25: public class MfaOptionQueryImpl extends AbstractKapuaQuery implements MfaOptionQuery {
26:
27: /**
28: * Constructor.
29: *
30: * @since 1.3.0
31: */
32: public MfaOptionQueryImpl() {
33: super();
34: }
35:
36: /**
37: * Constructor.
38: *
39: * @param scopeId The {@link #getScopeId()}.
40: * @since 1.3.0
41: */
42: public MfaOptionQueryImpl(KapuaId scopeId) {
43: this();
44: setScopeId(scopeId);
45: }
46: }