Skip to content

Package: AccessInfoQueryImpl

AccessInfoQueryImpl

nameinstructionbranchcomplexitylinemethod
AccessInfoQueryImpl()
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%
AccessInfoQueryImpl(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) 2016, 2020 Eurotech and/or its affiliates and others
3: *
4: * All rights reserved. This program and the accompanying materials
5: * are made available under the terms of the Eclipse Public License v1.0
6: * which accompanies this distribution, and is available at
7: * http://www.eclipse.org/legal/epl-v10.html
8: *
9: * Contributors:
10: * Eurotech - initial API and implementation
11: *******************************************************************************/
12: package org.eclipse.kapua.service.authorization.access.shiro;
13:
14: import org.eclipse.kapua.commons.model.query.AbstractKapuaQuery;
15: import org.eclipse.kapua.model.id.KapuaId;
16: import org.eclipse.kapua.service.authorization.access.AccessInfoQuery;
17:
18: /**
19: * Access info query implementation.
20: *
21: * @since 1.0
22: */
23: public class AccessInfoQueryImpl extends AbstractKapuaQuery implements AccessInfoQuery {
24:
25: /**
26: * Constructor
27: */
28: public AccessInfoQueryImpl() {
29: super();
30: }
31:
32: /**
33: * Constructor
34: *
35: * @param scopeId
36: */
37: public AccessInfoQueryImpl(KapuaId scopeId) {
38: this();
39: setScopeId(scopeId);
40: }
41: }