Uses of Class
com.wm.app.tn.doc.BizDocType

Packages that use BizDocType
com.wm.app.tn.db   
com.wm.app.tn.doc   
 

Uses of BizDocType in com.wm.app.tn.db
 

Methods in com.wm.app.tn.db that return BizDocType
static BizDocType BizDocTypeStore.get(java.lang.String id)
          Get a type definition from the cache.
static BizDocType BizDocTypeStore.get(java.lang.String id, boolean returnDeleted)
          Get a (possibly deleted) type definition from the cache.
static BizDocType BizDocTypeStore.get(java.lang.String id, boolean returnDeleted, boolean returnHidden)
          For internal use only
static BizDocType BizDocTypeStore.getByName(java.lang.String name, boolean returnDeleted, boolean returnHidden)
          Get a type definition by name
 

Methods in com.wm.app.tn.db with parameters of type BizDocType
static boolean BizDocTypeStore.insert(BizDocType t, java.lang.String s)
          For internal use only
static boolean BizDocTypeStore.update(BizDocType t)
          For internal use only
static void BizDocTypeStore.updateCorellations(java.sql.Connection conn, BizDocType t)
           
 

Uses of BizDocType in com.wm.app.tn.doc
 

Subclasses of BizDocType in com.wm.app.tn.doc
 class FFDocType
          This class maintains information about flat file document types.
 class MissingDocType
          Represents BizDocTypes whose classes cannot be found.
 class RecordDocType
          This class is create to deal with records that is received in TN
 class TestDocType
           
 class UnknownDocType
          Instances of this class are basically placeholders -- they flag docs that aren't otherwise recognized.
 class XMLDocType
          This class keeps associated info about XML business document types.
 

Methods in com.wm.app.tn.doc that return BizDocType
 BizDocType XMLDocType.copy()
          Creates a new XMLDocType and copies the contents of the current XMLDocType object (ie, "this") to the new XMLDocType object.
 BizDocType UnknownDocType.copy()
           
 BizDocType TestDocType.copy()
           
 BizDocType MissingDocType.copy()
           
 BizDocType FFDocType.copy()
          Creates a shallow copy of an FFDocType.
abstract  BizDocType BizDocType.copy()
          Abstract method for copying one BizDocType to another.
 BizDocType BizDocEnvelope.getDocType()
           
 BizDocType BizDocTypeReg.getType(java.lang.String id)
          Retrieves a BizDocType.
 BizDocType[] BizDocTypeReg.getTypes()
          Retrieves all BizDocTypes.
 BizDocType[] BizDocTypeReg.getTypes(java.lang.String className)
          Retrieves all BizDocTypes in a family.
 BizDocType BizDocTypeReg.remove(BizDocType bdt)
          Removes a BizDocType from the registry.
 BizDocType BizDocTypeReg.update(BizDocType bdt)
          Updates a BizDocType.
 

Methods in com.wm.app.tn.doc with parameters of type BizDocType
 void BizDocTypeReg.add(BizDocType bdt)
          Adds a BizDocType to the registry.
 void XMLDocType.compare(BizDocType oldType, BizDocType newType, java.util.Vector<ActivityLogEntry> logs)
           
 void UnknownDocType.compare(BizDocType oldType, BizDocType newType, java.util.Vector<ActivityLogEntry> logs)
           
 void TestDocType.compare(BizDocType oldType, BizDocType newType, java.util.Vector<ActivityLogEntry> logs)
           
 void MissingDocType.compare(BizDocType oldType, BizDocType newType, java.util.Vector<ActivityLogEntry> logs)
           
 void FFDocType.compare(BizDocType oldType, BizDocType newType, java.util.Vector<ActivityLogEntry> logs)
           
abstract  void BizDocType.compare(BizDocType priorDocType, BizDocType newDocType, java.util.Vector<ActivityLogEntry> logs)
           
static BizDocEnvelope BizDocEnvelope.createReply(BizDocEnvelope doc, BizDocType replyType)
          Create a reply of the supplied type.
static BizDocEnvelope BizDocEnvelope.newEnvelope(BizDocType type)
          Create a new envelope of the supplied type
 BizDocType BizDocTypeReg.remove(BizDocType bdt)
          Removes a BizDocType from the registry.
 void BizDocEnvelope.setDocType(BizDocType type)
          Set the document type (should only be called once)
 BizDocType BizDocTypeReg.update(BizDocType bdt)
          Updates a BizDocType.