Copyright 2009,2010, Lapetus Systems Ltd. (All rights reserved)

com.lapetus_ltd._2009.xml.types
Class XLptsCipherKeyType

java.lang.Object
  extended by com.lapetus_ltd._2009.xml.types.XLptsCipherKeyType

public class XLptsCipherKeyType
extends java.lang.Object

XSD Generated Class: This structure holds the data for a single cipher like AES, RSA public and RSA private. The instance and key strings are used to initiate the cipher in JCE, and are stored from the original creation of the cipher.

Java class for XLptsCipherKeyType complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="XLptsCipherKeyType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="bitLength" type="{http://www.w3.org/2001/XMLSchema}int"/>
         <element name="instanceString" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="keyString" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="key" type="{http://www.w3.org/2001/XMLSchema}hexBinary"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  int bitLength
           
protected  java.lang.String instanceString
           
protected  byte[] key
           
protected  java.lang.String keyString
           
 
Constructor Summary
XLptsCipherKeyType()
           
 
Method Summary
 int getBitLength()
          Gets the value of the bitLength property.
 java.lang.String getInstanceString()
          Gets the value of the instanceString property.
 byte[] getKey()
          Gets the value of the key property.
 java.lang.String getKeyString()
          Gets the value of the keyString property.
 void setBitLength(int value)
          Sets the value of the bitLength property.
 void setInstanceString(java.lang.String value)
          Sets the value of the instanceString property.
 void setKey(byte[] value)
          Sets the value of the key property.
 void setKeyString(java.lang.String value)
          Sets the value of the keyString property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

bitLength

protected int bitLength

instanceString

protected java.lang.String instanceString

key

protected byte[] key

keyString

protected java.lang.String keyString
Constructor Detail

XLptsCipherKeyType

public XLptsCipherKeyType()
Method Detail

getBitLength

public int getBitLength()
Gets the value of the bitLength property.


getInstanceString

public java.lang.String getInstanceString()
Gets the value of the instanceString property.

Returns:
possible object is String

getKey

public byte[] getKey()
Gets the value of the key property.

Returns:
possible object is String

getKeyString

public java.lang.String getKeyString()
Gets the value of the keyString property.

Returns:
possible object is String

setBitLength

public void setBitLength(int value)
Sets the value of the bitLength property.


setInstanceString

public void setInstanceString(java.lang.String value)
Sets the value of the instanceString property.

Parameters:
value - allowed object is String

setKey

public void setKey(byte[] value)
Sets the value of the key property.

Parameters:
value - allowed object is String

setKeyString

public void setKeyString(java.lang.String value)
Sets the value of the keyString property.

Parameters:
value - allowed object is String


Copyright 2009,2010, Lapetus Systems Ltd. (All rights reserved)