| | |
| | | * |
| | | * |
| | | * Copyright 2006-2008 Sun Microsystems, Inc. |
| | | * Portions Copyright 2015 ForgeRock AS |
| | | */ |
| | | package org.opends.server.api; |
| | | |
| | |
| | | * @return The name of the protocol associated with this protocol |
| | | * element. |
| | | */ |
| | | public String getProtocolElementName(); |
| | | String getProtocolElementName(); |
| | | |
| | | |
| | | |
| | |
| | | * |
| | | * @return A string representation of this protocol element. |
| | | */ |
| | | public String toString(); |
| | | String toString(); |
| | | |
| | | |
| | | |
| | |
| | | * @param buffer The buffer into which the string representation |
| | | * should be written. |
| | | */ |
| | | public void toString(StringBuilder buffer); |
| | | void toString(StringBuilder buffer); |
| | | |
| | | |
| | | |
| | |
| | | * @param indent The number of spaces that should be used to |
| | | * indent the resulting string representation. |
| | | */ |
| | | public void toString(StringBuilder buffer, int indent); |
| | | void toString(StringBuilder buffer, int indent); |
| | | } |
| | | |