You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2006/12/29 18:01:18 UTC

svn commit: r491049 - /directory/trunks/shared/ldap/src/main/java/org/apache/directory/shared/ldap/schema/GeneralizedTimeNormalizer.java

Author: elecharny
Date: Fri Dec 29 09:01:18 2006
New Revision: 491049

URL: http://svn.apache.org/viewvc?view=rev&rev=491049
Log:
Created the class. It is not implemented yet.

Added:
    directory/trunks/shared/ldap/src/main/java/org/apache/directory/shared/ldap/schema/GeneralizedTimeNormalizer.java

Added: directory/trunks/shared/ldap/src/main/java/org/apache/directory/shared/ldap/schema/GeneralizedTimeNormalizer.java
URL: http://svn.apache.org/viewvc/directory/trunks/shared/ldap/src/main/java/org/apache/directory/shared/ldap/schema/GeneralizedTimeNormalizer.java?view=auto&rev=491049
==============================================================================
--- directory/trunks/shared/ldap/src/main/java/org/apache/directory/shared/ldap/schema/GeneralizedTimeNormalizer.java (added)
+++ directory/trunks/shared/ldap/src/main/java/org/apache/directory/shared/ldap/schema/GeneralizedTimeNormalizer.java Fri Dec 29 09:01:18 2006
@@ -0,0 +1,65 @@
+/*
+ *  Licensed to the Apache Software Foundation (ASF) under one
+ *  or more contributor license agreements.  See the NOTICE file
+ *  distributed with this work for additional information
+ *  regarding copyright ownership.  The ASF licenses this file
+ *  to you under the Apache License, Version 2.0 (the
+ *  "License"); you may not use this file except in compliance
+ *  with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing,
+ *  software distributed under the License is distributed on an
+ *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ *  KIND, either express or implied.  See the License for the
+ *  specific language governing permissions and limitations
+ *  under the License.
+ *
+ */
+package org.apache.directory.shared.ldap.schema;
+
+
+import java.io.IOException;
+
+import javax.naming.NamingException;
+
+import org.apache.directory.shared.ldap.util.StringTools;
+
+
+/**
+ * Normalizer which normalize a time following those rules :
+ * - if minutes are ommited, then they are replaced by 00
+ * - if seconds are ommited, then they are replaced by 00
+ * - if fraction is 0, it is removed
+ * - the time is supposed to be expressed in Zulu (GMT), so 
+ * increment is applied to hours/days/yeah, and a Z is added at the end.
+ *
+ * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
+ * @version $Rev: 491034 $
+ */
+public class GeneralizedTimeNormalizer implements Normalizer
+{
+   static final long serialVersionUID = 1L;
+
+   public Object normalize( Object value ) throws NamingException
+   {
+       try
+       {
+           if ( value instanceof byte[] )
+           {
+               return PrepareString.normalize( StringTools.utf8ToString( ( byte[] ) value ), 
+                   PrepareString.StringType.DIRECTORY_STRING );
+           }
+           else
+           {
+               return PrepareString.normalize( ( String ) value,
+                   PrepareString.StringType.DIRECTORY_STRING );
+           }
+       }
+       catch ( IOException ioe )
+       {
+           throw new NamingException( "Invalid value : " + value );
+       }
+   }
+}
\ No newline at end of file