You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by er...@apache.org on 2005/09/01 23:21:53 UTC

svn commit: r265783 - /directory/protocol-providers/dns/trunk/src/java/org/apache/dns/store/DnsRecordStateFactory.java

Author: erodriguez
Date: Thu Sep  1 14:21:48 2005
New Revision: 265783

URL: http://svn.apache.org/viewcvs?rev=265783&view=rev
Log:
Formatting:  imports, line breaks, whitespace, or other code convention.

Modified:
    directory/protocol-providers/dns/trunk/src/java/org/apache/dns/store/DnsRecordStateFactory.java

Modified: directory/protocol-providers/dns/trunk/src/java/org/apache/dns/store/DnsRecordStateFactory.java
URL: http://svn.apache.org/viewcvs/directory/protocol-providers/dns/trunk/src/java/org/apache/dns/store/DnsRecordStateFactory.java?rev=265783&r1=265782&r2=265783&view=diff
==============================================================================
--- directory/protocol-providers/dns/trunk/src/java/org/apache/dns/store/DnsRecordStateFactory.java (original)
+++ directory/protocol-providers/dns/trunk/src/java/org/apache/dns/store/DnsRecordStateFactory.java Thu Sep  1 14:21:48 2005
@@ -17,30 +17,30 @@
 
 package org.apache.dns.store;
 
-import org.apache.dns.records.ResourceRecord;
-import org.apache.dns.records.Record;
-import org.apache.dns.records.standard.PointerRecord;
-import org.apache.dns.records.standard.NameServerRecord;
-import org.apache.dns.records.standard.StartOfAuthorityRecord;
-import org.apache.dns.records.internet.AddressRecord;
+import java.util.Hashtable;
 
-import javax.naming.spi.DirStateFactory;
-import javax.naming.Name;
 import javax.naming.Context;
-import javax.naming.NamingException;
+import javax.naming.Name;
 import javax.naming.NamingEnumeration;
-import javax.naming.directory.Attributes;
-import javax.naming.directory.BasicAttributes;
+import javax.naming.NamingException;
 import javax.naming.directory.Attribute;
+import javax.naming.directory.Attributes;
 import javax.naming.directory.BasicAttribute;
-import java.util.Hashtable;
+import javax.naming.directory.BasicAttributes;
+import javax.naming.spi.DirStateFactory;
+
+import org.apache.dns.records.ResourceRecord;
+import org.apache.dns.records.internet.AddressRecord;
+import org.apache.dns.records.standard.NameServerRecord;
+import org.apache.dns.records.standard.PointerRecord;
+import org.apache.dns.records.standard.StartOfAuthorityRecord;
 
 /**
  * A state factory which produces the state to be stored in an entry of a DNS record
  * of any type.
  *
  * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
- * @version $Rev$
+ * @version $Rev$, $Date$
  */
 public class DnsRecordStateFactory implements DirStateFactory
 {