![JAR search and dependency download from the Maven repository](/logo.png)
nl.open.jwtdependency.org.bouncycastle.asn1.eac.Flags Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-jwt-nodependencies Show documentation
Show all versions of java-jwt-nodependencies Show documentation
This is a drop in replacement for the auth0 java-jwt library (see https://github.com/auth0/java-jwt). This jar makes sure there are no external dependencies (e.g. fasterXml, Apacha Commons) needed. This is useful when deploying to an application server (e.g. tomcat with Alfreso or Pega).
The newest version!
package org.bouncycastle.asn1.eac;
import java.util.Enumeration;
import java.util.Hashtable;
public class Flags
{
int value = 0;
public Flags()
{
}
public Flags(int v)
{
value = v;
}
public void set(int flag)
{
value |= flag;
}
public boolean isSet(int flag)
{
return (value & flag) != 0;
}
public int getFlags()
{
return value;
}
/* Java 1.5
String decode(Map decodeMap)
{
StringJoiner joiner = new StringJoiner(" ");
for (int i : decodeMap.keySet())
{
if (isSet(i))
joiner.add(decodeMap.get(i));
}
return joiner.toString();
}
*/
String decode(Hashtable decodeMap)
{
StringJoiner joiner = new StringJoiner(" ");
Enumeration e = decodeMap.keys();
while (e.hasMoreElements())
{
Integer i = (Integer)e.nextElement();
if (isSet(i.intValue()))
{
joiner.add((String)decodeMap.get(i));
}
}
return joiner.toString();
}
private class StringJoiner
{
String mSeparator;
boolean First = true;
StringBuffer b = new StringBuffer();
public StringJoiner(String separator)
{
mSeparator = separator;
}
public void add(String str)
{
if (First)
{
First = false;
}
else
{
b.append(mSeparator);
}
b.append(str);
}
public String toString()
{
return b.toString();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy