X_W_Counter.java
| Index Score | ||
|---|---|---|
![]() |
![]() |
org.compiere.model |
![]() |
![]() |
Compiere |
View: Reasons, Metrics, Source Code
These are the metrics that contribute to the Enerjy Score for this file, ranked by impact. So the metrics listed at the top influence the score to a greater extent that the metrics listed at the bottom.
/******************************************************************************
* Product: Compiere ERP & CRM Smart Business Solution *
* Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. *
* This program is free software, you can redistribute it and/or modify it *
* under the terms version 2 of the GNU General Public License as published *
* by the Free Software Foundation. This program is distributed in the hope *
* that it will be useful, but WITHOUT ANY WARRANTY, without even the implied *
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* See the GNU General Public License for more details. *
* You should have received a copy of the GNU General Public License along *
* with this program, if not, write to the Free Software Foundation, Inc., *
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. *
* For the text or an alternative of this public license, you may reach us *
* ComPiere, Inc., 3600 Bridge Parkway #102, Redwood City, CA 94065, USA *
* or via info@compiere.org or http://www.compiere.org/license.html *
*****************************************************************************/
package org.compiere.model;
/** Generated Model - DO NOT CHANGE */
import java.sql.*;
import java.math.*;
import org.compiere.framework.*;
import org.compiere.util.*;
/** Generated Model for W_Counter
* @author Jorg Janke (generated)
* @version Release 3.1.0 - $Id$ */
public class X_W_Counter extends PO
{
/** Standard Constructor
@param ctx context
@param W_Counter_ID id
@param trxName transaction
*/
public X_W_Counter (Ctx ctx, int W_Counter_ID, String trxName)
{
super (ctx, W_Counter_ID, trxName);
/** if (W_Counter_ID == 0)
{
setPageURL (null);
setProcessed (false); // N
setW_Counter_ID (0);
}
*/
}
/** Load Constructor
@param ctx context
@param rs result set
@param trxName transaction
*/
public X_W_Counter (Ctx ctx, ResultSet rs, String trxName)
{
super (ctx, rs, trxName);
}
/** Serial Version No */
static final long serialVersionUID = 27495261242789L;
/** Last Updated Timestamp 2008-06-10 15:12:06.0 */
public static final long updatedMS = 1213135926000L;
/** AD_Table_ID=403 */
public static final int Table_ID=403;
/** TableName=W_Counter */
public static final String Table_Name="W_Counter";
protected static KeyNamePair Model = new KeyNamePair(Table_ID,"W_Counter");
protected BigDecimal accessLevel = new BigDecimal(3);
/** AccessLevel
@return 3 - Client - Org
*/
protected int get_AccessLevel()
{
return accessLevel.intValue();
}
/** Load Meta Data
@param ctx context
@return PO Info
*/
protected POInfo initPO (Ctx ctx)
{
POInfo poi = POInfo.getPOInfo (ctx, Table_ID);
return poi;
}
/** Info
@return info
*/
public String toString()
{
StringBuffer sb = new StringBuffer ("X_W_Counter[").append(get_ID()).append("]");
return sb.toString();
}
/** Set User/Contact.
@param AD_User_ID User within the system - Internal or Business Partner Contact */
public void setAD_User_ID (int AD_User_ID)
{
if (AD_User_ID <= 0) set_Value ("AD_User_ID", null);
else
set_Value ("AD_User_ID", new Integer(AD_User_ID));
}
/** Get User/Contact.
@return User within the system - Internal or Business Partner Contact */
public int getAD_User_ID()
{
Integer ii = (Integer)get_Value("AD_User_ID");
if (ii == null) return 0;
return ii.intValue();
}
/** Set Accept Language.
@param AcceptLanguage Language accepted based on browser information */
public void setAcceptLanguage (String AcceptLanguage)
{
int length = p_info.getFieldLength("AcceptLanguage");
if (AcceptLanguage != null && AcceptLanguage.length() > length)
{
log.warning("Length > " + length + " - truncated");
AcceptLanguage = AcceptLanguage.substring(0,length);
}
set_Value ("AcceptLanguage", AcceptLanguage);
}
/** Get Accept Language.
@return Language accepted based on browser information */
public String getAcceptLanguage()
{
return (String)get_Value("AcceptLanguage");
}
/** Set EMail Address.
@param EMail Electronic Mail Address */
public void setEMail (String EMail)
{
int length = p_info.getFieldLength("EMail");
if (EMail != null && EMail.length() > length)
{
log.warning("Length > " + length + " - truncated");
EMail = EMail.substring(0,length);
}
set_Value ("EMail", EMail);
}
/** Get EMail Address.
@return Electronic Mail Address */
public String getEMail()
{
return (String)get_Value("EMail");
}
/** Set Page URL.
@param PageURL Page URL */
public void setPageURL (String PageURL)
{
if (PageURL == null) throw new IllegalArgumentException ("PageURL is mandatory.");
int length = p_info.getFieldLength("PageURL");
if (PageURL.length() > length)
{
log.warning("Length > " + length + " - truncated");
PageURL = PageURL.substring(0,length);
}
set_Value ("PageURL", PageURL);
}
/** Get Page URL.
@return Page URL */
public String getPageURL()
{
return (String)get_Value("PageURL");
}
/** Set Processed.
@param Processed The document has been processed */
public void setProcessed (boolean Processed)
{
set_Value ("Processed", new Boolean(Processed));
}
/** Get Processed.
@return The document has been processed */
public boolean isProcessed()
{
Object oo = get_Value("Processed");
if (oo != null)
{
if (oo instanceof Boolean) return ((Boolean)oo).booleanValue();
return "Y".equals(oo);
}
return false;
}
/** Set Referrer.
@param Referrer Referring web address */
public void setReferrer (String Referrer)
{
int length = p_info.getFieldLength("Referrer");
if (Referrer != null && Referrer.length() > length)
{
log.warning("Length > " + length + " - truncated");
Referrer = Referrer.substring(0,length);
}
set_Value ("Referrer", Referrer);
}
/** Get Referrer.
@return Referring web address */
public String getReferrer()
{
return (String)get_Value("Referrer");
}
/** Set Remote Addr.
@param Remote_Addr Remote Address */
public void setRemote_Addr (String Remote_Addr)
{
int length = p_info.getFieldLength("Remote_Addr");
if (Remote_Addr != null && Remote_Addr.length() > length)
{
log.warning("Length > " + length + " - truncated");
Remote_Addr = Remote_Addr.substring(0,length);
}
set_Value ("Remote_Addr", Remote_Addr);
}
/** Get Remote Addr.
@return Remote Address */
public String getRemote_Addr()
{
return (String)get_Value("Remote_Addr");
}
/** Get Record ID/ColumnName
@return ID/ColumnName pair */
public KeyNamePair getKeyNamePair()
{
return new KeyNamePair(get_ID(), getRemote_Addr());
}
/** Set Remote Host.
@param Remote_Host Remote host Info */
public void setRemote_Host (String Remote_Host)
{
int length = p_info.getFieldLength("Remote_Host");
if (Remote_Host != null && Remote_Host.length() > length)
{
log.warning("Length > " + length + " - truncated");
Remote_Host = Remote_Host.substring(0,length);
}
set_Value ("Remote_Host", Remote_Host);
}
/** Get Remote Host.
@return Remote host Info */
public String getRemote_Host()
{
return (String)get_Value("Remote_Host");
}
/** Set User Agent.
@param UserAgent Browser Used */
public void setUserAgent (String UserAgent)
{
int length = p_info.getFieldLength("UserAgent");
if (UserAgent != null && UserAgent.length() > length)
{
log.warning("Length > " + length + " - truncated");
UserAgent = UserAgent.substring(0,length);
}
set_Value ("UserAgent", UserAgent);
}
/** Get User Agent.
@return Browser Used */
public String getUserAgent()
{
return (String)get_Value("UserAgent");
}
/** Set Counter Count.
@param W_CounterCount_ID Web Counter Count Management */
public void setW_CounterCount_ID (int W_CounterCount_ID)
{
if (W_CounterCount_ID <= 0) set_ValueNoCheck ("W_CounterCount_ID", null);
else
set_ValueNoCheck ("W_CounterCount_ID", new Integer(W_CounterCount_ID));
}
/** Get Counter Count.
@return Web Counter Count Management */
public int getW_CounterCount_ID()
{
Integer ii = (Integer)get_Value("W_CounterCount_ID");
if (ii == null) return 0;
return ii.intValue();
}
/** Set Web Counter.
@param W_Counter_ID Individual Count hit */
public void setW_Counter_ID (int W_Counter_ID)
{
if (W_Counter_ID < 1) throw new IllegalArgumentException ("W_Counter_ID is mandatory.");
set_ValueNoCheck ("W_Counter_ID", new Integer(W_Counter_ID));
}
/** Get Web Counter.
@return Individual Count hit */
public int getW_Counter_ID()
{
Integer ii = (Integer)get_Value("W_Counter_ID");
if (ii == null) return 0;
return ii.intValue();
}
}
The table below shows all metrics for X_W_Counter.java.




