congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
JsonWebToken
Code IndexAdd Tabnine to your IDE (free)

How to use
JsonWebToken
in
org.jboss.resteasy.jwt

Best Java code snippets using org.jboss.resteasy.jwt.JsonWebToken (Showing top 10 results out of 315)

origin: resteasy/Resteasy

/**
* Tests that the token is not expired and is not-before.
*
* @return true if the token is not expired and is not-before
*/
@JsonIgnore
public boolean isActive()
{
 return (!isExpired() || expiration == 0) && (isNotBefore() || notBefore == 0);
}
origin: org.jboss.resteasy/skeleton-key-core

@Override
public SkeletonKeyToken issuedAt(long issuedAt)
{
 return (SkeletonKeyToken)super.issuedAt(issuedAt);
}
origin: org.jboss.resteasy/skeleton-key-core

@Override
public SkeletonKeyToken expiration(long expiration)
{
 return (SkeletonKeyToken)super.expiration(expiration);
}
origin: org.jboss.resteasy/skeleton-key-core

@Override
public SkeletonKeyToken notBefore(long notBefore)
{
 return (SkeletonKeyToken)super.notBefore(notBefore);
}
origin: org.jboss.resteasy/skeleton-key-core

@Override
public SkeletonKeyToken audience(String audience)
{
 return (SkeletonKeyToken)super.audience(audience);
}
origin: org.jboss.resteasy/skeleton-key-core

@Override
public SkeletonKeyToken id(String id)
{
 return (SkeletonKeyToken)super.id(id);
}
origin: org.jboss.resteasy/skeleton-key-core

@Override
public SkeletonKeyToken issuer(String issuer)
{
 return (SkeletonKeyToken)super.issuer(issuer);
}
origin: org.jboss.resteasy/skeleton-key-core

@Override
public SkeletonKeyToken principal(String principal)
{
 return (SkeletonKeyToken)super.principal(principal);
}
origin: org.jboss.resteasy/skeleton-key-core

@Override
public SkeletonKeyToken type(String type)
{
 return (SkeletonKeyToken)super.type(type);
}
origin: org.jboss.resteasy/jose-jwt

/**
* Tests that the token is not expired and is not-before.
*
* @return true if the token is not expired and is not-before
*/
@JsonIgnore
public boolean isActive()
{
 return (!isExpired() || expiration == 0) && (isNotBefore() || notBefore == 0);
}
org.jboss.resteasy.jwtJsonWebToken

Most used methods

  • audience
  • expiration
  • id
  • isExpired
  • isNotBefore
  • issuedAt
  • issuer
  • notBefore
  • principal
  • type

Popular in Java

  • Parsing JSON documents to java classes using gson
  • findViewById (Activity)
  • getSupportFragmentManager (FragmentActivity)
  • scheduleAtFixedRate (Timer)
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • Enumeration (java.util)
    A legacy iteration interface.New code should use Iterator instead. Iterator replaces the enumeration
  • ResourceBundle (java.util)
    ResourceBundle is an abstract class which is the superclass of classes which provide Locale-specifi
  • JCheckBox (javax.swing)
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now