Author: elecharny
Date: Sun Jun 5 15:50:04 2005
New Revision: 180164
URL: http://svn.apache.org/viewcvs?rev=180164&view=rev
Log:
Created the ModifyDNResponsePOJO
Added:
directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/pojo/ModifyDNResponsePOJO.java
Added: directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/pojo/ModifyDNResponsePOJO.java
URL: http://svn.apache.org/viewcvs/directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/pojo/ModifyDNResponsePOJO.java?rev=180164&view=auto
==============================================================================
--- directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/pojo/ModifyDNResponsePOJO.java
(added)
+++ directory/sandbox/trunk/asn1-new-codec/src/java/org/apache/asn1/ldap/pojo/ModifyDNResponsePOJO.java
Sun Jun 5 15:50:04 2005
@@ -0,0 +1,36 @@
+/*
+ * Copyright 2005 The Apache Software Foundation
+ *
+ * Licensed 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.asn1.ldap.pojo;
+
+/**
+ * An ModifyResponse Message. Its syntax is :
+ * ModifyDNResponse ::= [APPLICATION 13] LDAPResult
+ *
+ * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
+ */
+public class ModifyDNResponsePOJO extends ResponsePOJO
+{
+ //~ Constructors -------------------------------------------------------------------------------
+
+ /**
+ * Creates a new ModifyDNResponsePOJO object.
+ */
+ public ModifyDNResponsePOJO()
+ {
+ super( );
+ }
+}
|