Package org.teiid.security
Class GSSResult
- java.lang.Object
-
- org.teiid.security.GSSResult
-
public class GSSResult extends Object
-
-
Constructor Summary
Constructors Constructor Description GSSResult(boolean authenticated, GSSCredential cred)
GSSResult(byte[] token, boolean authenticated, GSSCredential cred)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GSSCredential
getDelegationCredential()
Object
getSecurityContext()
byte[]
getServiceToken()
String
getUserName()
boolean
isAuthenticated()
boolean
isNullContinuationToken()
void
setDelegationCredential(GSSCredential delegationCredentail)
void
setSecurityContext(Object sc)
void
setUserName(String name)
-
-
-
Constructor Detail
-
GSSResult
public GSSResult(byte[] token, boolean authenticated, GSSCredential cred)
-
GSSResult
public GSSResult(boolean authenticated, GSSCredential cred)
-
-
Method Detail
-
isNullContinuationToken
public boolean isNullContinuationToken()
-
isAuthenticated
public boolean isAuthenticated()
-
getServiceToken
public byte[] getServiceToken()
-
setSecurityContext
public void setSecurityContext(Object sc)
-
getSecurityContext
public Object getSecurityContext()
-
getUserName
public String getUserName()
-
setUserName
public void setUserName(String name)
-
getDelegationCredential
public GSSCredential getDelegationCredential()
-
setDelegationCredential
public void setDelegationCredential(GSSCredential delegationCredentail)
-
-