congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
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

  • Parsing JSON documents to java classes using gson
  • getResourceAsStream (ClassLoader)
  • scheduleAtFixedRate (Timer)
  • getApplicationContext (Context)
  • VirtualMachine (com.sun.tools.attach)
    A Java virtual machine. A VirtualMachine represents a Java virtual machine to which this Java vir
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • JarFile (java.util.jar)
    JarFile is used to read jar entries and their associated data from jar files.
  • JOptionPane (javax.swing)
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • 14 Best Plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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