ccs.http
Class BrowserExecutable

java.lang.Object
  extended by ccs.beetree.BeeObject
      extended by ccs.cdb.CDBObject
          extended by ccs.http.BrowserExecutable
All Implemented Interfaces:
java.io.Serializable

Deprecated. No longer used, but still present in legacy conf.cdbs.

public class BrowserExecutable
extends CDBObject

A trivial class to store the browser command string in the browser.

See Also:
Serialized Form

Field Summary
 java.lang.String command
          Deprecated. The command line.
 
Fields inherited from class ccs.cdb.CDBObject
clone, key, marshalVersion, owner
 
Fields inherited from class ccs.beetree.BeeObject
cipher, encodedLength, isBodiless, isForceDirectDecrypt, isZip, slack
 
Constructor Summary
BrowserExecutable()
          Deprecated.  
 
Method Summary
protected  void cpmarshal(java.io.DataOutputStream dest)
          Deprecated. override this to marshal your data, just like marshal.
protected  void cpunmarshal(java.io.DataInputStream src, int marshalver)
          Deprecated. override this to unmarshal your data, just like unmarshal.
 
Methods inherited from class ccs.cdb.CDBObject
canChangeKeyProgrammatically, canDeleteProgrammatically, canUpdateProgrammatically, cpgetKey, cpgetMarshalledLength, cppreMarshal, cppreUnmarshal, cpsetKey, getCDB, getKey, getMarshalledLength, marshal, preMarshal, preUnmarshal, setCDB, setKey, transientMarshal, transientUnmarshal, unmarshal
 
Methods inherited from class ccs.beetree.BeeObject
lock, unlock
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

command

public java.lang.String command
Deprecated. 
The command line.

Constructor Detail

BrowserExecutable

public BrowserExecutable()
Deprecated. 
Method Detail

cpmarshal

protected void cpmarshal(java.io.DataOutputStream dest)
                  throws java.io.IOException
Deprecated. 
Description copied from class: CDBObject
override this to marshal your data, just like marshal. The data will be in the object's fields when this is called (rather than within any UI objects).

Specified by:
cpmarshal in class CDBObject
Parameters:
dest - The stream to marshal onto.
Throws:
java.io.IOException - If this breaks (breaks the CDB too).

cpunmarshal

protected void cpunmarshal(java.io.DataInputStream src,
                           int marshalver)
                    throws java.io.IOException
Deprecated. 
Description copied from class: CDBObject
override this to unmarshal your data, just like unmarshal.

Specified by:
cpunmarshal in class CDBObject
Parameters:
src - The stream to unmarshal from
marshalver - The marshal version of the data in src - i.e. the version of this class which wrote the data. This may be different from the current marshalVersion. If so (i.e. the stored data is the wrong version) your method should allow for it. This allows comparatively painless data migration between versions of your objects.
Throws:
java.io.IOException - if this breaks (breaks the CDB too).