| java.lang.Object org.apache.derby.impl.sql.depend.BasicProviderInfo
BasicProviderInfo | public class BasicProviderInfo implements ProviderInfo(Code) | | This is the implementation of ProviderInfo in the DependencyManager.
|
uuid | public UUID uuid(Code) | | This class implements Formatable. That means that it
can write itself to and from a formatted stream. If
you add more fields to this class, make sure that you
also write/read them with the writeExternal()/readExternal()
methods.
If, inbetween releases, you add more fields to this class,
then you should bump the version number emitted by the getTypeFormatId()
method.
|
BasicProviderInfo | public BasicProviderInfo()(Code) | | Public niladic constructor. Needed for Formatable interface to work.
|
BasicProviderInfo | public BasicProviderInfo(UUID uuid, DependableFinder dFinder, String providerName)(Code) | | Make one of these puppies.
Parameters: uuid - UUID of Provider. Parameters: dFinder - DependableFinder for Provider. Parameters: providerName - Name of the Provider. |
getTypeFormatId | public int getTypeFormatId()(Code) | | Get the formatID which corresponds to this class.
the formatID of this class |
writeExternal | public void writeExternal(ObjectOutput out) throws IOException(Code) | | Write this object to a stream of stored objects.
Parameters: out - write bytes here. exception: IOException - thrown on error |
|
|