From e9c14a1a6a2478414bf9494257731453871093b7 Mon Sep 17 00:00:00 2001
From: Kevin Deldycke <kevin@nexedi.com>
Date: Tue, 28 Jun 2005 12:35:58 +0000
Subject: [PATCH] Agent is now a sub-class of Image to support signature image
 files.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@3362 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 product/ERP5/Document/Agent.py | 11 ++++-------
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/product/ERP5/Document/Agent.py b/product/ERP5/Document/Agent.py
index b95fcb5111..415130996d 100755
--- a/product/ERP5/Document/Agent.py
+++ b/product/ERP5/Document/Agent.py
@@ -27,16 +27,13 @@
 #
 ##############################################################################
 
-from zLOG import LOG
 from AccessControl import ClassSecurityInfo
-from Products.CMFCore.utils import getToolByName
-from Products.CMFCore.WorkflowCore import WorkflowMethod
-from Products.ERP5Type import Permissions, PropertySheet, Constraint, Interface
-from Products.ERP5Type.XMLObject import XMLObject
+from Products.ERP5Type import Permissions, PropertySheet
+from Products.ERP5.Document.Image import Image
 
-class Agent(XMLObject):
+class Agent(Image):
     """
-    An Agent is a Person who is permitted to perform some actions on the bank account according to Privileges.
+      An Agent is a Person who is permitted to perform some actions on the bank account according to Privileges.
     """
     # CMF Type Definition
     meta_type = 'ERP5 Agent'
-- 
2.30.9