org.apache.jdo.model.jdo
Interface JDOExtension

All Known Implementing Classes:
JDOExtensionImpl

public interface JDOExtension

A JDOExtension instance represents a JDO vendor specific extension.

Author:
Michael Bouschen

Method Summary
 java.lang.String getKey()
          Returns the key of this vendor extension.
 java.lang.Object getValue()
          Returns the value of this vendor extension.
 java.lang.String getVendorName()
          Returns the vendor name of this vendor extension.
 void setKey(java.lang.String key)
          Sets the key for this vendor extension.
 void setValue(java.lang.Object value)
          Sets the value for this vendor extension.
 void setVendorName(java.lang.String vendorName)
          Sets the vendor name for this vendor extension.
 

Method Detail

getVendorName

public java.lang.String getVendorName()
Returns the vendor name of this vendor extension.


setVendorName

public void setVendorName(java.lang.String vendorName)
                   throws ModelException
Sets the vendor name for this vendor extension.

Throws:
ModelException - if impossible

getKey

public java.lang.String getKey()
Returns the key of this vendor extension.


setKey

public void setKey(java.lang.String key)
            throws ModelException
Sets the key for this vendor extension.

Throws:
ModelException - if impossible

getValue

public java.lang.Object getValue()
Returns the value of this vendor extension.


setValue

public void setValue(java.lang.Object value)
              throws ModelException
Sets the value for this vendor extension.

Throws:
ModelException - if impossible


Copyright © 2005 Apache Software Foundation. All Rights Reserved.