/usr/local/CPAN/Db-DFC/IDfExportOperation.pm
# ------------------------------------------------------------------ #
# Db::DFC Version 0.4 -- Thu Feb 22 22:04:43 2001
# (C) 2000-2001 M.S. Roth
#
# IDfExportOperation (com.documentum.operations.IDfExportOperation)
# ------------------------------------------------------------------ #
package IDfExportOperation;
@ISA = (IDfOperation);
use JPL::AutoLoader;
use JPL::Class 'com::documentum::operations::IDfExportOperation';
use JPL::Class 'com.documentum.fc.common.IDfList';
use constant DONT_RECORD_IN_REGISTRY => 0;
use constant RECORD_AS_VIEWED_FILE_IN_REGISTRY => 1;
use constant RECORD_AS_LOCAL_FILE_IN_REGISTRY => 2;
sub getDestinationDirectory {
## METHOD: java.lang.String getDestinationDirectory()
my $self = shift;
my $getDestinationDirectory = JPL::AutoLoader::getmeth('getDestinationDirectory',[],['java.lang.String']);
my $rv = "";
eval { $rv = $$self->$getDestinationDirectory(); };
if (JNI::ExceptionOccurred()) {
Db::DFC::dfcException();
return;
} else {
return $rv;
}
}
sub getDefaultDestinationDirectory {
## METHOD: java.lang.String getDefaultDestinationDirectory()
my $self = shift;
my $getDefaultDestinationDirectory = JPL::AutoLoader::getmeth('getDefaultDestinationDirectory',[],['java.lang.String']);
my $rv = "";
eval { $rv = $$self->$getDefaultDestinationDirectory(); };
if (JNI::ExceptionOccurred()) {
Db::DFC::dfcException();
return;
} else {
return $rv;
}
}
sub setDestinationDirectory {
## METHOD: void setDestinationDirectory(java.lang.String)
my ($self,$p0) = @_;
my $setDestinationDirectory = JPL::AutoLoader::getmeth('setDestinationDirectory',['java.lang.String'],[]);
my $rv = "";
eval { $rv = $$self->$setDestinationDirectory($p0); };
if (JNI::ExceptionOccurred()) {
Db::DFC::dfcException();
return;
} else {
return $rv;
}
}
sub getObjects {
## METHOD: com.documentum.fc.common.IDfList getObjects()
my $self = shift;
my $getObjects = JPL::AutoLoader::getmeth('getObjects',[],['com.documentum.fc.common.IDfList']);
my $rv = "";
eval { $rv = $$self->$getObjects(); };
if (JNI::ExceptionOccurred()) {
Db::DFC::dfcException();
return;
} else {
bless (\$rv,IDfList);
return \$rv;
}
}
sub getRecordInRegistry {
## METHOD: int getRecordInRegistry()
my $self = shift;
my $getRecordInRegistry = JPL::AutoLoader::getmeth('getRecordInRegistry',[],['int']);
my $rv = "";
eval { $rv = $$self->$getRecordInRegistry(); };
if (JNI::ExceptionOccurred()) {
Db::DFC::dfcException();
return;
} else {
return $rv;
}
}
sub setRecordInRegistry {
## METHOD: void setRecordInRegistry(int)
my ($self,$p0) = @_;
my $setRecordInRegistry = JPL::AutoLoader::getmeth('setRecordInRegistry',['int'],[]);
my $rv = "";
eval { $rv = $$self->$setRecordInRegistry($p0); };
if (JNI::ExceptionOccurred()) {
Db::DFC::dfcException();
return;
} else {
return $rv;
}
}
1;
# ------------------------------------------------------------------ #
# <SDG><
# ------------------------------------------------------------------ #