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

How to use
isAnonymous
method
in
org.ietf.jgss.GSSName

Best Java code snippets using org.ietf.jgss.GSSName.isAnonymous (Showing top 10 results out of 315)

origin: org.jglobus/gss

/**
 * Converts the specified GSSName to GlobusPrincipal.
 * The GSSName is converted into the GlobusPrincipal
 * only if the GSSName is of type
 * <code>org.globus.gsi.gssapi.GlobusGSSName</code>
 * and the name is not anonymous.
 */
public static GlobusPrincipal toGlobusPrincipal(GSSName name) {
return (!name.isAnonymous() &&
  (name instanceof GlobusGSSName)) ?
  new GlobusPrincipal(name.toString()) :
  null;
}
origin: fr.iscpif.jglobus/gss

/**
 * Converts the specified GSSName to GlobusPrincipal.
 * The GSSName is converted into the GlobusPrincipal
 * only if the GSSName is of type
 * <code>org.globus.gsi.gssapi.GlobusGSSName</code>
 * and the name is not anonymous.
 */
public static GlobusPrincipal toGlobusPrincipal(GSSName name) {
return (!name.isAnonymous() &&
  (name instanceof GlobusGSSName)) ?
  new GlobusPrincipal(name.toString()) :
  null;
}
origin: org.jglobus/gss

  return another.isAnonymous();
if (another.isAnonymous()) {
  return false;
origin: fr.iscpif.jglobus/gss

  return another.isAnonymous();
if (another.isAnonymous()) {
  return false;
origin: fr.iscpif.jglobus/gss

if (this.anonymity || this.ctxCred.getName().isAnonymous()) {
  this.anonymity = true;
} else {
origin: org.jglobus/gss

if (name.isAnonymous()) {
return new GlobusGSSCredentialImpl();
} else {
origin: fr.iscpif.jglobus/gss

if (name.isAnonymous()) {
return new GlobusGSSCredentialImpl();
} else {
origin: org.jglobus/gss

if (this.ctxCred.getName().isAnonymous()) {
  throw new GlobusGSSException(GSSException.DEFECTIVE_CREDENTIAL,
                 GlobusGSSException.UNKNOWN,
origin: fr.iscpif.jglobus/gss

if (this.ctxCred.getName().isAnonymous()) {
  throw new GlobusGSSException(GSSException.DEFECTIVE_CREDENTIAL,
                 GlobusGSSException.UNKNOWN,
origin: org.jglobus/gss

if (this.anonymity || this.ctxCred.getName().isAnonymous()) {
  this.anonymity = true;
} else {
org.ietf.jgssGSSNameisAnonymous

Popular methods of GSSName

  • toString
  • canonicalize
  • export
  • equals
  • hashCode

Popular in Java

  • Finding current android device location
  • runOnUiThread (Activity)
  • putExtra (Intent)
  • onCreateOptionsMenu (Activity)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • String (java.lang)
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • TimerTask (java.util)
    The TimerTask class represents a task to run at a specified time. The task may be run once or repeat
  • Top plugins for Android Studio
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