Class LdapUrl.Extension
- java.lang.Object
-
- org.apache.directory.api.ldap.model.url.LdapUrl.Extension
-
- Enclosing class:
- LdapUrl
public static class LdapUrl.Extension extends Object
An inner bean to hold extension information.- Author:
- Apache Directory Project
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetType()Gets the type.StringgetValue()Gets the value.booleanisCritical()Checks if is critical.voidsetCritical(boolean critical)Sets the critical flag.voidsetType(String type)Sets the type.voidsetValue(String value)Sets the value.
-
-
-
Method Detail
-
isCritical
public boolean isCritical()
Checks if is critical.- Returns:
- true, if is critical
-
setCritical
public void setCritical(boolean critical)
Sets the critical flag.- Parameters:
critical- the new critical flag
-
getType
public String getType()
Gets the type.- Returns:
- the type
-
setType
public void setType(String type)
Sets the type.- Parameters:
type- the new type
-
getValue
public String getValue()
Gets the value.- Returns:
- the value
-
setValue
public void setValue(String value)
Sets the value.- Parameters:
value- the new value
-
-