Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

apollo.dataadapter.das.simple
Class SimpleDASDsn  view SimpleDASDsn download SimpleDASDsn.java

java.lang.Object
  extended byapollo.dataadapter.das.simple.SimpleDASDsn
All Implemented Interfaces:
apollo.dataadapter.das.DASDsn

public class SimpleDASDsn
extends java.lang.Object
implements apollo.dataadapter.das.DASDsn


Field Summary
private  java.lang.String description
           
private  java.lang.String mapMaster
           
private  java.lang.String source
           
private  java.lang.String sourceId
           
private  java.lang.String sourceVersion
           
 
Constructor Summary
SimpleDASDsn(java.lang.String theSourceId, java.lang.String theSourceVersion, java.lang.String theSource, java.lang.String theMapMaster, java.lang.String theDescription)
           
 
Method Summary
 java.lang.String getDescription()
           
 java.lang.String getMapMaster()
           
 java.lang.String getSource()
           
 java.lang.String getSourceId()
           
 java.lang.String getSourceVersion()
           
 void setDescription(java.lang.String newValue)
           
 void setMapMaster(java.lang.String newValue)
           
 void setSource(java.lang.String newValue)
           
 void setSourceId(java.lang.String newValue)
           
 void setSourceVersion(java.lang.String newValue)
           
 java.lang.String toString()
          Convert this Object to a human-readable String.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

sourceId

private java.lang.String sourceId

sourceVersion

private java.lang.String sourceVersion

source

private java.lang.String source

mapMaster

private java.lang.String mapMaster

description

private java.lang.String description
Constructor Detail

SimpleDASDsn

public SimpleDASDsn(java.lang.String theSourceId,
                    java.lang.String theSourceVersion,
                    java.lang.String theSource,
                    java.lang.String theMapMaster,
                    java.lang.String theDescription)
Method Detail

getSourceId

public java.lang.String getSourceId()
Specified by:
getSourceId in interface apollo.dataadapter.das.DASDsn

getSourceVersion

public java.lang.String getSourceVersion()
Specified by:
getSourceVersion in interface apollo.dataadapter.das.DASDsn

getSource

public java.lang.String getSource()
Specified by:
getSource in interface apollo.dataadapter.das.DASDsn

getMapMaster

public java.lang.String getMapMaster()
Specified by:
getMapMaster in interface apollo.dataadapter.das.DASDsn

getDescription

public java.lang.String getDescription()
Specified by:
getDescription in interface apollo.dataadapter.das.DASDsn

setSourceId

public void setSourceId(java.lang.String newValue)
Specified by:
setSourceId in interface apollo.dataadapter.das.DASDsn

setSourceVersion

public void setSourceVersion(java.lang.String newValue)
Specified by:
setSourceVersion in interface apollo.dataadapter.das.DASDsn

setSource

public void setSource(java.lang.String newValue)
Specified by:
setSource in interface apollo.dataadapter.das.DASDsn

setMapMaster

public void setMapMaster(java.lang.String newValue)
Specified by:
setMapMaster in interface apollo.dataadapter.das.DASDsn

setDescription

public void setDescription(java.lang.String newValue)
Specified by:
setDescription in interface apollo.dataadapter.das.DASDsn

toString

public java.lang.String toString()
Description copied from class: java.lang.Object
Convert this Object to a human-readable String. There are no limits placed on how long this String should be or what it should contain. We suggest you make it as intuitive as possible to be able to place it into System.out.println() 55 and such.

It is typical, but not required, to ensure that this method never completes abruptly with a java.lang.RuntimeException.

This method will be called when performing string concatenation with this object. If the result is null, string concatenation will instead use "null".

The default implementation returns getClass().getName() + "@" + Integer.toHexString(hashCode()).