Package com.isode.dsapi.atnds
Class ATNds.ATNdsResult
- java.lang.Object
-
- com.isode.dsapi.atnds.ATNds.ATNdsResult
-
- Enclosing class:
- ATNds
public static class ATNds.ATNdsResult extends java.lang.Object
An object which returns the result of an ATNds conversion. Use methodsgetString()
andgetDN()
to obtain references to the components of the result.- Since:
- 15.0
-
-
Constructor Summary
Constructors Constructor Description ATNdsResult(java.lang.String s, DN d)
Construct new object
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DN
getDN()
Determine the DN component of this ATNdsResultjava.lang.String
getString()
Determine the String component of this ATNdsResultjava.lang.String
toString()
Return a String representation of the contents of this object
-
-
-
Constructor Detail
-
ATNdsResult
public ATNdsResult(java.lang.String s, DN d)
Construct new object- Parameters:
s
- the stringValue (may be null)d
- the entryDN (may be null)
-
-
Method Detail
-
getString
public java.lang.String getString()
Determine the String component of this ATNdsResult- Returns:
- a String, or null if no String is present.
-
getDN
public DN getDN()
Determine the DN component of this ATNdsResult- Returns:
- a DN, or null if none is present.
-
toString
public java.lang.String toString()
Return a String representation of the contents of this object- Overrides:
toString
in classjava.lang.Object
- Returns:
- a String representation of the object, suitable for debugging
-
-