blob: ac180b4e0f36fecede6b484746e6c18c0578a5a6 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>PermissionUtils.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">Apache Shiro :: Core</a> &gt; <a href="index.source.html" class="el_package">org.apache.shiro.util</a> &gt; <span class="el_source">PermissionUtils.java</span></div><h1>PermissionUtils.java</h1><pre class="source lang-java linenums">/*
* 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
* &quot;License&quot;); 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
* &quot;AS IS&quot; 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.shiro.util;
import org.apache.shiro.authz.Permission;
import org.apache.shiro.authz.permission.PermissionResolver;
import java.util.Arrays;
import java.util.Collection;
import java.util.LinkedHashSet;
import java.util.Set;
/**
* Utility class to help with String-to-Permission object resolution.
*
* @since 0.1
*/
<span class="nc" id="L35">public class PermissionUtils {</span>
public static Set&lt;Permission&gt; resolveDelimitedPermissions(String s, PermissionResolver permissionResolver) {
<span class="fc" id="L38"> Set&lt;String&gt; permStrings = toPermissionStrings(s);</span>
<span class="fc" id="L39"> return resolvePermissions(permStrings, permissionResolver);</span>
}
public static Set&lt;String&gt; toPermissionStrings(String permissionsString) {
<span class="fc" id="L43"> String[] tokens = StringUtils.split(permissionsString);</span>
<span class="pc bpc" id="L44" title="2 of 4 branches missed."> if (tokens != null &amp;&amp; tokens.length &gt; 0) {</span>
<span class="fc" id="L45"> return new LinkedHashSet&lt;String&gt;(Arrays.asList(tokens));</span>
}
<span class="nc" id="L47"> return null;</span>
}
public static Set&lt;Permission&gt; resolvePermissions(Collection&lt;String&gt; permissionStrings, PermissionResolver permissionResolver) {
<span class="fc" id="L51"> Set&lt;Permission&gt; permissions = new LinkedHashSet&lt;Permission&gt;(permissionStrings.size());</span>
<span class="fc bfc" id="L52" title="All 2 branches covered."> for (String permissionString : permissionStrings) {</span>
<span class="fc" id="L53"> permissions.add(permissionResolver.resolvePermission(permissionString));</span>
<span class="fc" id="L54"> }</span>
<span class="fc" id="L55"> return permissions;</span>
}
}
</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.8.3.201901230119</span></div></body></html>