a little bit more cleanup from previous DOM/DomianObject removal
authormiker <miker@9efc2488-bf62-4759-914b-345cdb29e865>
Fri, 6 Jul 2007 12:29:52 +0000 (12:29 +0000)
committermiker <miker@9efc2488-bf62-4759-914b-345cdb29e865>
Fri, 6 Jul 2007 12:29:52 +0000 (12:29 +0000)
git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1002 9efc2488-bf62-4759-914b-345cdb29e865

src/perlmods/OpenSRF/AppSession.pm
src/perlmods/OpenSRF/Application/Demo/Math.pm
src/perlmods/OpenSRF/Application/Demo/MathDB.pm
src/perlmods/OpenSRF/DomainObject/oilsResponse.pm
src/perlmods/OpenSRF/EX.pm
src/perlmods/OpenSRF/System.pm

index 6d663bf..9b2017a 100644 (file)
@@ -1,6 +1,4 @@
 package OpenSRF::AppSession;
-#use OpenSRF::DOM;
-#use OpenSRF::DOM::Element::userAuth;
 use OpenSRF::DomainObject::oilsMessage;
 use OpenSRF::DomainObject::oilsMethod;
 use OpenSRF::DomainObject::oilsResponse qw/:status/;
index eed993a..1bc99ef 100644 (file)
@@ -3,7 +3,6 @@ use base qw/OpenSRF::Application/;
 use OpenSRF::Application;
 use OpenSRF::Utils::Logger qw/:level/;
 use OpenSRF::DomainObject::oilsResponse;
-#use OpenSRF::DomainObject::oilsPrimitive;
 use OpenSRF::EX qw/:try/;
 use strict;
 use warnings;
index 69985a6..6cdc78c 100644 (file)
@@ -3,7 +3,6 @@ use OpenSRF::Utils::JSON;
 use base qw/OpenSRF::Application/;
 use OpenSRF::Application;
 use OpenSRF::DomainObject::oilsResponse qw/:status/;
-#use OpenSRF::DomainObject::oilsPrimitive;
 use OpenSRF::Utils::Logger qw/:level/;
 use strict;
 use warnings;
index 0469b79..bcaf96f 100644 (file)
@@ -106,11 +106,8 @@ sub statusCode {
        return $self->{statusCode};
 }
 
-
 #-------------------------------------------------------------------------------
 
-
-
 package OpenSRF::DomainObject::oilsStatus;
 use OpenSRF::DomainObject::oilsResponse qw/:status/;
 use base 'OpenSRF::DomainObject::oilsResponse';
@@ -142,6 +139,8 @@ sets the default B<status> to C<Status> and B<statusCode> to C<STATUS_OK>.
 $status = 'Status';
 $statusCode = STATUS_OK;
 
+#-------------------------------------------------------------------------------
+
 package OpenSRF::DomainObject::oilsConnectStatus;
 use OpenSRF::DomainObject::oilsResponse qw/:status/;
 use base 'OpenSRF::DomainObject::oilsStatus';
@@ -177,8 +176,7 @@ B<OpenSRF::DomainObject::oilsStatus>
 $status = 'Connection Successful';
 $statusCode = STATUS_OK;
 
-
-
+#-------------------------------------------------------------------------------
 
 package OpenSRF::DomainObject::oilsContinueStatus;
 use OpenSRF::DomainObject::oilsResponse qw/:status/;
@@ -216,15 +214,10 @@ $statusCode = STATUS_CONTINUE;
 
 1;
 
-
-
 #-------------------------------------------------------------------------------
 
-
-
 package OpenSRF::DomainObject::oilsResult;
 use OpenSRF::DomainObject::oilsResponse qw/:status/;
-use OpenSRF::DomainObject::oilsPrimitive;
 use base 'OpenSRF::DomainObject::oilsResponse';
 use vars qw/$status $statusCode/;
 OpenSRF::Utils::JSON->register_class_hint( hint => 'osrfResult', name => 'OpenSRF::DomainObject::oilsResult', type => 'hash' );
@@ -284,12 +277,8 @@ B<OpenSRF::DomainObject::oilsResponse>
 
 1;
 
-
-
 #-------------------------------------------------------------------------------
 
-
-
 package OpenSRF::DomainObject::oilsException;
 use OpenSRF::DomainObject::oilsResponse qw/:status/;
 use OpenSRF::EX;
@@ -334,6 +323,8 @@ sets the default B<status> to C<Exception occured> and B<statusCode> to C<STATUS
 $status = 'Exception occured';
 $statusCode = STATUS_INTERNALSERVERERROR;
 
+#-------------------------------------------------------------------------------
+
 package OpenSRF::DomainObject::oilsConnectException;
 use OpenSRF::DomainObject::oilsResponse qw/:status/;
 use OpenSRF::EX;
@@ -371,6 +362,8 @@ B<OpenSRF::DomainObject::oilsException>
 $status = 'Connect Request Failed';
 $statusCode = STATUS_FORBIDDEN;
 
+#-------------------------------------------------------------------------------
+
 package OpenSRF::DomainObject::oilsMethodException;
 use OpenSRF::DomainObject::oilsResponse qw/:status/;
 use base 'OpenSRF::DomainObject::oilsException';
@@ -421,10 +414,6 @@ $statusCode = STATUS_INTERNALSERVERERROR;
 
 # -------------------------------------------
 
-
-
-
-
 package OpenSRF::DomainObject::oilsBrokenSession;
 use OpenSRF::DomainObject::oilsResponse qw/:status/;
 use OpenSRF::EX;
@@ -434,6 +423,8 @@ OpenSRF::Utils::JSON->register_class_hint( hint => 'osrfBrokenSession', name =>
 $status = "Request on Disconnected Session";
 $statusCode = STATUS_EXPFAILED;
 
+#-------------------------------------------------------------------------------
+
 package OpenSRF::DomainObject::oilsXMLParseError;
 use OpenSRF::DomainObject::oilsResponse qw/:status/;
 use OpenSRF::EX;
@@ -443,6 +434,8 @@ OpenSRF::Utils::JSON->register_class_hint( hint => 'osrfXMLParseError', name =>
 $status = "XML Parse Error";
 $statusCode = STATUS_EXPFAILED;
 
+#-------------------------------------------------------------------------------
+
 package OpenSRF::DomainObject::oilsAuthException;
 use OpenSRF::DomainObject::oilsResponse qw/:status/;
 use OpenSRF::EX;
index 7b2cfb0..8aff411 100644 (file)
@@ -179,34 +179,6 @@ Thrown where an argument to a method was invalid or not provided
 
 
 # -------------------------------------------------------------------
-package OpenSRF::EX::NotADomainObject;
-use base 'OpenSRF::EX::ERROR';
-our $ex_msg_header = "Must be a Domain Object";
-
-=head2 OpenSRF::EX::NotADomainObject
-
-Thrown where a OpenSRF::DomainObject::oilsScalar or
-OpenSRF::DomainObject::oilsPair was passed a value that
-is not a perl scalar or a OpenSRF::DomainObject.
-
-=cut
-
-
-# -------------------------------------------------------------------
-package OpenSRF::EX::ArrayOutOfBounds;
-use base 'OpenSRF::EX::ERROR';
-our $ex_msg_header = "Tied array access on a nonexistant index";
-
-=head2 OpenSRF::EX::ArrayOutOfBounds
-
-Thrown where a TIEd array (OpenSRF::DomainObject::oilsArray) was accessed at
-a nonexistant index
-
-=cut
-
-
-
-# -------------------------------------------------------------------
 package OpenSRF::EX::Socket;
 use base 'OpenSRF::EX::ERROR';
 our $ex_msg_header = "Socket Exception";
index 115e7c6..ba86243 100644 (file)
@@ -8,7 +8,6 @@ use OpenSRF::Transport;
 use OpenSRF::UnixServer;
 use OpenSRF::Utils;
 use OpenSRF::Utils::LogServer;
-#use OpenSRF::DOM;
 use OpenSRF::EX qw/:try/;
 use POSIX qw/setsid :sys_wait_h/;
 use OpenSRF::Utils::Config;