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

  • Creating JSON documents from java classes using gson
  • startActivity (Activity)
  • notifyDataSetChanged (ArrayAdapter)
  • onRequestPermissionsResult (Fragment)
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • JFrame (javax.swing)
  • JList (javax.swing)
  • 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