SEO Domain Index
Crisopeya IM
v1.0.0

net.crisopeya.product.SEO_Domain_Index_rg.data
Class SEO_Domain_Index_rg

java.lang.Object
  extended by net.crisopeya.product.SEO_Domain_Index_rg.data.SEO_Domain_Index_rg
All Implemented Interfaces:
DataModel
Direct Known Subclasses:
SEO_Domain_Index_rgUiData

public class SEO_Domain_Index_rg
extends Object
implements DataModel

The SEO_Domain_Index_rg class is the data container class for the SEO Domain Index Information Module (external link) . It is used by the CRISOPEYA Platform to send the data between application layers (mainly between the Database, the Business Logic and the User Interface layers). It is a lightweight class that works as a bridge between layers to manage information.

SEO_Domain_Index_rg Data Management

The SEO_Domain_Index_rg class Use page shows the class functionality as a bridge between application layers, as shown in the following diagram:

Crisopeya IM Data Management Diagram


It sends SEO Domain Index IM (external link) data between the SEO_Domain_Index_rgEnhancer and the SEO_Domain_Index_rgDbData classes in the DATABASE layer and the SEO_Domain_Index_rgUiData in the User Interface layer.

When a user insert some data on the User Interface, the data is stored into this class and it is sent to the Database layer. The same way, when information data is retrieved from the database, it is stored into this class that is then sent to the User Interface layer.

For more information on SEO Domain Index IM (external link) Data Management see SEO_Domain_Index_rg, SEO_Domain_Index_rgEnhancer, SEO_Domain_Index_rgDbData and SEO_Domain_Index_rgUiData.

Version:
1.0.0, 01/28/09
Author:
C-SGE (crisopeya software generation engine)
See Also:
SEO_Domain_Index_rgEnhancer, SEO_Domain_Index_rgDbData, SEO_Domain_Index_rgUiData

Field Summary
protected  Date Date
          The SEO Domain Index (external link) IM Date field.
protected  URL Domain
          The SEO Domain Index (external link) IM Domain field.
protected  Integer Google_site
          The SEO Domain Index (external link) IM Google site field.
protected  Integer Google_sitemap
          The SEO Domain Index (external link) IM Google sitemap field.
protected  Integer Live
          The SEO Domain Index (external link) IM Live field.
protected  Long SEO_Domain_Index_rg_Id
          The SEO Domain Index (external link) IM register instance identifier.
protected  Integer Sitemap
          The SEO Domain Index (external link) IM Sitemap field.
protected  Integer Yahoo
          The SEO Domain Index (external link) IM Yahoo field.
protected  Integer Yahoo_inlinks
          The SEO Domain Index (external link) IM Yahoo inlinks field.
 
Constructor Summary
SEO_Domain_Index_rg()
          Default empty constructor.
SEO_Domain_Index_rg(DataModel obj)
          Creates a new SEO Domain Index (external link) IM object instance from another instance.
SEO_Domain_Index_rg(URL _Domain, Date _Date, Integer _Sitemap, Integer _Google_sitemap, Integer _Google_site, Integer _Yahoo, Integer _Yahoo_inlinks, Integer _Live)
          Main constructor for the SEO Domain Index (external link) IM container class.
 
Method Summary
 Date getDate()
          Gets the "SEO Domain Index (external link)" IM Date field.
 URL getDomain()
          Gets the "SEO Domain Index (external link)" IM Domain field.
 Integer getGoogle_site()
          Gets the "SEO Domain Index (external link)" IM Google site field.
 Integer getGoogle_sitemap()
          Gets the "SEO Domain Index (external link)" IM Google sitemap field.
 Long getId()
          Gets the SEO Domain Index (external link) IM register instance Identifier.
 BufferedImage[] getImages()
          Generates an array with all the SEO Domain Index (external link) IM object instance images.
 Integer getLive()
          Gets the "SEO Domain Index (external link)" IM Live field.
 Integer getSitemap()
          Gets the "SEO Domain Index (external link)" IM Sitemap field.
 Integer getYahoo_inlinks()
          Gets the "SEO Domain Index (external link)" IM Yahoo inlinks field.
 Integer getYahoo()
          Gets the "SEO Domain Index (external link)" IM Yahoo field.
 void set(DataModel object)
          Loads the data from another SEO Domain Index (external link) IM object instance.
 void setDate(Date _Date)
          Sets the "SEO Domain Index (external link)" IM Date field.
 void setDomain(URL _Domain)
          Sets the "SEO Domain Index (external link)" IM Domain field.
 void setGoogle_site(Integer _Google_site)
          Sets the "SEO Domain Index (external link)" IM Google site field.
 void setGoogle_sitemap(Integer _Google_sitemap)
          Sets the "SEO Domain Index (external link)" IM Google sitemap field.
 void setId(Long _id)
          Sets the SEO Domain Index (external link) IM register instance Identifier.
 void setLive(Integer _Live)
          Sets the "SEO Domain Index (external link)" IM Live field.
 void setSitemap(Integer _Sitemap)
          Sets the "SEO Domain Index (external link)" IM Sitemap field.
 void setYahoo_inlinks(Integer _Yahoo_inlinks)
          Sets the "SEO Domain Index (external link)" IM Yahoo inlinks field.
 void setYahoo(Integer _Yahoo)
          Sets the "SEO Domain Index (external link)" IM Yahoo field.
 String toString()
          Generates an string text for the SEO Domain Index (external link) IM object instance, so it can be written to the logs.
 String toString(String _delimiter)
          Generates an string text for the SEO Domain Index (external link) IM object instance using the provided delimiter.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

SEO_Domain_Index_rg_Id

protected Long SEO_Domain_Index_rg_Id
The SEO Domain Index (external link) IM register instance identifier.

See Also:
getId(), setId(Long)

Domain

protected URL Domain
The SEO Domain Index (external link) IM Domain field. Website domain

See Also:
getDomain(), setDomain(URL)

Date

protected Date Date
The SEO Domain Index (external link) IM Date field. Indexed pages date

See Also:
getDate(), setDate(Date)

Sitemap

protected Integer Sitemap
The SEO Domain Index (external link) IM Sitemap field. Number of locations on the submited XML sitemap

See Also:
getSitemap(), setSitemap(Integer)

Google_sitemap

protected Integer Google_sitemap
The SEO Domain Index (external link) IM Google sitemap field. Number of Google indexed pages according to the webmaster tools sitemap

See Also:
getGoogle_sitemap(), setGoogle_sitemap(Integer)

Google_site

protected Integer Google_site
The SEO Domain Index (external link) IM Google site field. Number of Google indexed pages according to the site search

See Also:
getGoogle_site(), setGoogle_site(Integer)

Yahoo

protected Integer Yahoo
The SEO Domain Index (external link) IM Yahoo field. Number of Yahoo indexed pages

See Also:
getYahoo(), setYahoo(Integer)

Yahoo_inlinks

protected Integer Yahoo_inlinks
The SEO Domain Index (external link) IM Yahoo inlinks field. Number of Yahoo inlinks

See Also:
getYahoo_inlinks(), setYahoo_inlinks(Integer)

Live

protected Integer Live
The SEO Domain Index (external link) IM Live field. Number of Live indexed pages

See Also:
getLive(), setLive(Integer)
Constructor Detail

SEO_Domain_Index_rg

public SEO_Domain_Index_rg(URL _Domain,
                           Date _Date,
                           Integer _Sitemap,
                           Integer _Google_sitemap,
                           Integer _Google_site,
                           Integer _Yahoo,
                           Integer _Yahoo_inlinks,
                           Integer _Live)
Main constructor for the SEO Domain Index (external link) IM container class. All the SEO Domain Index (external link) IM fields are set by this constructor parameters.

Parameters:
_Domain - "SEO Domain Index" IM Domain field
_Date - "SEO Domain Index" IM Date field
_Sitemap - "SEO Domain Index" IM Sitemap field
_Google_sitemap - "SEO Domain Index" IM Google sitemap field
_Google_site - "SEO Domain Index" IM Google site field
_Yahoo - "SEO Domain Index" IM Yahoo field
_Yahoo_inlinks - "SEO Domain Index" IM Yahoo inlinks field
_Live - "SEO Domain Index" IM Live field
See Also:
Domain, Date, Sitemap, Google_sitemap, Google_site, Yahoo, Yahoo_inlinks, Live

SEO_Domain_Index_rg

public SEO_Domain_Index_rg()
Default empty constructor.


SEO_Domain_Index_rg

public SEO_Domain_Index_rg(DataModel obj)
Creates a new SEO Domain Index (external link) IM object instance from another instance.

Parameters:
obj - Another "SEO Domain Index" IM object instance
See Also:
set(DataModel)
Method Detail

getDomain

public URL getDomain()
Gets the "SEO Domain Index (external link)" IM Domain field.

Returns:
The field value
See Also:
Domain

setDomain

public void setDomain(URL _Domain)
Sets the "SEO Domain Index (external link)" IM Domain field.

Parameters:
_Domain - The field value
See Also:
Domain

getDate

public Date getDate()
Gets the "SEO Domain Index (external link)" IM Date field.

Returns:
The field value
See Also:
Date

setDate

public void setDate(Date _Date)
Sets the "SEO Domain Index (external link)" IM Date field.

Parameters:
_Date - The field value
See Also:
Date

getSitemap

public Integer getSitemap()
Gets the "SEO Domain Index (external link)" IM Sitemap field.

Returns:
The field value
See Also:
Sitemap

setSitemap

public void setSitemap(Integer _Sitemap)
Sets the "SEO Domain Index (external link)" IM Sitemap field.

Parameters:
_Sitemap - The field value
See Also:
Sitemap

getGoogle_sitemap

public Integer getGoogle_sitemap()
Gets the "SEO Domain Index (external link)" IM Google sitemap field.

Returns:
The field value
See Also:
Google_sitemap

setGoogle_sitemap

public void setGoogle_sitemap(Integer _Google_sitemap)
Sets the "SEO Domain Index (external link)" IM Google sitemap field.

Parameters:
_Google_sitemap - The field value
See Also:
Google_sitemap

getGoogle_site

public Integer getGoogle_site()
Gets the "SEO Domain Index (external link)" IM Google site field.

Returns:
The field value
See Also:
Google_site

setGoogle_site

public void setGoogle_site(Integer _Google_site)
Sets the "SEO Domain Index (external link)" IM Google site field.

Parameters:
_Google_site - The field value
See Also:
Google_site

getYahoo

public Integer getYahoo()
Gets the "SEO Domain Index (external link)" IM Yahoo field.

Returns:
The field value
See Also:
Yahoo

setYahoo

public void setYahoo(Integer _Yahoo)
Sets the "SEO Domain Index (external link)" IM Yahoo field.

Parameters:
_Yahoo - The field value
See Also:
Yahoo

getYahoo_inlinks

public Integer getYahoo_inlinks()
Gets the "SEO Domain Index (external link)" IM Yahoo inlinks field.

Returns:
The field value
See Also:
Yahoo_inlinks

setYahoo_inlinks

public void setYahoo_inlinks(Integer _Yahoo_inlinks)
Sets the "SEO Domain Index (external link)" IM Yahoo inlinks field.

Parameters:
_Yahoo_inlinks - The field value
See Also:
Yahoo_inlinks

getLive

public Integer getLive()
Gets the "SEO Domain Index (external link)" IM Live field.

Returns:
The field value
See Also:
Live

setLive

public void setLive(Integer _Live)
Sets the "SEO Domain Index (external link)" IM Live field.

Parameters:
_Live - The field value
See Also:
Live

getId

public Long getId()
Gets the SEO Domain Index (external link) IM register instance Identifier.

Specified by:
getId in interface DataModel
Returns:
The identifier
See Also:
SEO_Domain_Index_rg_Id

setId

public void setId(Long _id)
Sets the SEO Domain Index (external link) IM register instance Identifier.

Specified by:
setId in interface DataModel
Parameters:
_id - The identifier
See Also:
SEO_Domain_Index_rg_Id

set

public void set(DataModel object)
Loads the data from another SEO Domain Index (external link) IM object instance.

Specified by:
set in interface DataModel
Parameters:
object - Another "SEO Domain Index" IM object instance.

toString

public String toString()
Generates an string text for the SEO Domain Index (external link) IM object instance, so it can be written to the logs.

Overrides:
toString in class Object
Returns:
The string text for the object instance
See Also:
toString(String)

toString

public String toString(String _delimiter)
Generates an string text for the SEO Domain Index (external link) IM object instance using the provided delimiter. It is used by the export functionality to generate a "comma separated values" export file (using the provided delimiter).

Specified by:
toString in interface DataModel
Parameters:
_delimiter - The fields delimiter
Returns:
The string text for the object instance using this delimiter

getImages

public BufferedImage[] getImages()
Generates an array with all the SEO Domain Index (external link) IM object instance images. If the SEO Domain Index (external link) IM handles no images, it generates an empty array.

Specified by:
getImages in interface DataModel
Returns:
An array with the "SEO Domain Index" IM object images.

SEO Domain Index
Crisopeya IM
v1.0.0

This software application has been automatically built and generated by the Crisopeya Technology. It has been freely shared and contributed to the Crisopeya Software 2.0 Community Software Catalog by one of its users.

You can download this application from the Crisopeya Software 2.0 Community Software Catalog.
You can join the Crisopeya community and build and share your own software applications.

© 2004-2009 Crisopeya Team at Business Excellence by Information Technologies SL (BE I.T.)