|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.directory.shared.ldap.schema.AbstractSchemaObject
org.apache.directory.shared.ldap.schema.LoadableSchemaObject
org.apache.directory.shared.ldap.schema.SyntaxChecker
org.apache.directory.shared.ldap.schema.syntaxCheckers.UtcTimeSyntaxChecker
public class UtcTimeSyntaxChecker
A SyntaxChecker which verifies that a value is a UTC time according to RFC 4517. From RFC 4517 : UTCTime = year month day hour minute [ second ] [ u-time-zone ] u-time-zone = %x5A ; "Z" | u-differential u-differential = ( MINUS | PLUS ) hour minute year = 2(%x30-39) ; "00" to "99" month = ( %x30 %x31-39 ) ; "01" (January) to "09" | ( %x31 %x30-32 ) ; "10" to "12" day = ( %x30 %x31-39 ) ; "01" to "09" | ( %x31-32 %x30-39 ) ; "10" to "29" | ( %x33 %x30-31 ) ; "30" to "31" hour = ( %x30-31 %x30-39 ) | ( %x32 %x30-33 ) ; "00" to "23" minute = %x30-35 %x30-39 ; "00" to "59" second = ( %x30-35 %x30-39 ) ; "00" to "59" g-time-zone = %x5A ; "Z" | g-differential g-differential = ( MINUS / PLUS ) hour [ minute ] MINUS = %x2D ; minus sign ("-") From RFC 4512 : PLUS = %x2B ; plus sign ("+")
Field Summary |
---|
Fields inherited from class org.apache.directory.shared.ldap.schema.AbstractSchemaObject |
---|
description, extensions, isEnabled, isObsolete, isReadOnly, locked, names, objectType, oid, schemaName, specification |
Constructor Summary | |
---|---|
UtcTimeSyntaxChecker()
Creates a new instance of UtcTimeSyntaxChecker. |
Method Summary | |
---|---|
boolean |
isValidSyntax(java.lang.Object value)
Determines if the attribute's value conforms to the attribute syntax. |
Methods inherited from class org.apache.directory.shared.ldap.schema.SyntaxChecker |
---|
assertSyntax, equals, toString |
Methods inherited from class org.apache.directory.shared.ldap.schema.LoadableSchemaObject |
---|
copy, getBytecode, getFqcn, isValid, registerOid, setBytecode, setFqcn |
Methods inherited from class org.apache.directory.shared.ldap.schema.AbstractSchemaObject |
---|
addExtension, addName, addToRegistries, clear, compareOid, copy, getDescription, getExtensions, getName, getNames, getObjectType, getOid, getSchemaName, getSpecification, hashCode, isDisabled, isEnabled, isObsolete, isReadOnly, lock, removeFromRegistries, setDescription, setEnabled, setExtensions, setNames, setNames, setObsolete, setOid, setReadOnly, setRegistries, setSchemaName, setSpecification |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public UtcTimeSyntaxChecker()
Method Detail |
---|
public boolean isValidSyntax(java.lang.Object value)
isValidSyntax
in class SyntaxChecker
value
- the value of some attribute with the syntax
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |