XSessionType Data Type

Java class for x_session_type complex type.

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

 <complexType name="x_session_type">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="db" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="conf" type="{uri:lens:job:0.1}map_type" maxOccurs="unbounded" minOccurs="0"/>
         <element name="resource_path" type="{uri:lens:job:0.1}resource_path" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 

Properties
name data type description
db string
conf array of array of MapType
resource_path array of array of ResourcePath

Example

{
  "db" : "...",
  "conf" : [ [ {
    "key" : "...",
    "value" : "..."
  }, {
    "key" : "...",
    "value" : "..."
  } ], [ {
    "key" : "...",
    "value" : "..."
  }, {
    "key" : "...",
    "value" : "..."
  } ] ],
  "resource_path" : [ [ {
    "path" : "...",
    "type" : "..."
  }, {
    "path" : "...",
    "type" : "..."
  } ], [ {
    "path" : "...",
    "type" : "..."
  }, {
    "path" : "...",
    "type" : "..."
  } ] ]
}