Rakesh API

Constant Field Values


Contents
biz.wedoit4u.*

biz.wedoit4u.Logger
public static final java.lang.String ERROR_LOG_PROPERTY "errorLog"
public static final java.lang.String OUT_LOG_PROPERTY "outLog"

biz.wedoit4u.databeans.CategoryBean
public static final java.lang.String CACHE_NAME "CategoryBeanCache"

biz.wedoit4u.databeans.biz.wedoit4u.databeans.CategoryHelper
static final java.lang.String ALL_CATEGORIES "select category_id from categories"
static final java.lang.String CATEGORY_ID_SEQUENCE "sequence_category_id"
static final java.lang.String DELETE_CATEGORIES "delete from categories where category_id = ?"
static final java.lang.String FIND_BY_CUSTOMER "select category_id from categories where customer_id = ? order by sort_order"
static final java.lang.String INSERT_CATEGORIES "insert into categories cols( category_id, customer_id, menu_name, long_name, brief, picture, description, sort_order ) values ( ?, ?, ?, ?, ?, ?, ?, ? )"
static final java.lang.String SELECT_CATEGORIES "select * from categories where category_id = ?"
static final java.lang.String UPDATE_CATEGORIES "update categories set customer_id = ?, menu_name = ?, long_name = ?, brief = ?, picture = ?, description = ?, sort_order = ? where category_id = ?"

biz.wedoit4u.databeans.ContentBean
public static final java.lang.String CACHE_NAME "ContentBeanCache"

biz.wedoit4u.databeans.biz.wedoit4u.databeans.ContentHelper
static final java.lang.String ALL_CONTENTS "select content_id from contents"
static final java.lang.String CONTENT_ID_SEQUENCE "sequence_content_id"
static final java.lang.String DELETE_CONTENTS "delete from contents where content_id = ?"
static final java.lang.String FIND_BY_CATEGORY "select content_id from contents where category_id = ?"
static final java.lang.String INSERT_CONTENTS "insert into contents cols( content_id, category_id, title, brief, picture, body ) values ( ?, ?, ?, ?, ?, \' \' )"
static final java.lang.String NULL_BODY "update contents set body = \' \' where content_id = ?"
static final java.lang.String SELECT_CONTENTS "select * from contents where content_id = ?"
static final java.lang.String UPDATE_BODY "select body from contents where content_id = ? for update"
static final java.lang.String UPDATE_CONTENTS "update contents set category_id = ?, title = ?, brief = ?, picture = ? where content_id = ?"

biz.wedoit4u.databeans.CustomerBean
public static final java.lang.String CACHE_NAME "CustomerBeanCache"

biz.wedoit4u.databeans.biz.wedoit4u.databeans.CustomerHelper
static final java.lang.String ALL_CUSTOMERS "select customer_Id from customers"
static final java.lang.String CUSTOMER_ID_SEQUENCE "sequence_customer_id"
static final java.lang.String DELETE_CUSTOMERS "delete from customers where customer_id = ?"
static final java.lang.String FIND_BY_CUSTOMER_TYPE "select customer_id from customers where customer_type_id = ?"
static final java.lang.String FIND_BY_USERNAME_AND_PASSWORD "select customer_id from customers where username = ? and password = ?"
static final java.lang.String INSERT_CUSTOMERS "insert into customers cols( customer_id, username, password, email, domain, active, activation_date, expiration_date, customer_type_id ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ? )"
static final java.lang.String SELECT_CUSTOMERS "select * from customers where customer_id = ?"
static final java.lang.String UPDATE_CUSTOMERS "update customers set username = ?, password = ?, email = ?, domain = ?, active = ?, activation_date = ?, expiration_date = ?, customer_type_id = ? where customer_id = ?"

biz.wedoit4u.databeans.CustomerStyleBean
public static final java.lang.String CACHE_NAME "CustomerStyleBeanCache"

biz.wedoit4u.databeans.biz.wedoit4u.databeans.CustomerStyleHelper
static final java.lang.String ALL_CUSTOMER_STYLES "select style_class_id, customer_id from customer_styles"
static final java.lang.String DELETE_CUSTOMER_STYLES "delete from customer_styles where style_class_id = ? and customer_id = ?"
static final java.lang.String FIND_BY_CUSTOMER "select style_class_id, customer_id from customer_styles where customer_id = ?"
static final java.lang.String INSERT_CUSTOMER_STYLES "insert into customer_styles cols( style_class_id, customer_id, color, font_family, font_weight, font_size, background_color, text_align, vertical_align, width, height, border_style, border_width, padding_top, padding_left, padding_right, padding_bottom, text_decoration ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )"
static final java.lang.String SELECT_CUSTOMER_STYLES "select * from customer_styles where style_class_id = ? and customer_id = ?"
static final java.lang.String UPDATE_CUSTOMER_STYLES "update customer_styles set color = ?, font_family = ?, font_weight = ?, font_size = ?, background_color = ?, text_align = ?, vertical_align = ?, width = ?, height = ?, border_style = ?, border_width = ?, padding_top = ?, padding_left = ?, padding_right = ?, padding_bottom = ?, text_decoration = ? where style_class_id = ? and customer_id = ?"

biz.wedoit4u.databeans.CustomerTypeBean
public static final java.lang.String CACHE_NAME "CustomerTypeBeanCache"

biz.wedoit4u.databeans.biz.wedoit4u.databeans.CustomerTypeHelper
static final java.lang.String ALL_CUSTOMER_TYPES "select * from customer_types"
static final java.lang.String CUSTOMER_TYPE_ID_SEQUENCE "sequence_customer_type_id"
static final java.lang.String DELETE_CUSTOMER_TYPES "delete from customer_types where customer_type_id = ?"
static final java.lang.String INSERT_CUSTOMER_TYPES "insert into customer_types cols( customer_type_id, type, description, partner_id ) values ( ?, ?, ?, ? )"
static final java.lang.String SELECT_BY_PARTNER "select * from customer_types where partner_id = ?"
static final java.lang.String SELECT_CUSTOMER_TYPES "select * from customer_types where customer_type_id = ?"
static final java.lang.String UPDATE_CUSTOMER_TYPES "update customer_types set type = ?, description = ? where customer_type_id = ?"

biz.wedoit4u.databeans.DatabaseHelper
private static final java.lang.String WEDOIT4U_JNDI_LOCATION "jdbc/oracle/wedoit4u"

biz.wedoit4u.databeans.PartnerBean
public static final java.lang.String CACHE_NAME "PartnerBeanCache"

biz.wedoit4u.databeans.biz.wedoit4u.databeans.PartnerHelper
static final java.lang.String ALL_PARTNERS "select partner_id from partners"
static final java.lang.String DELETE_PARTNERS "delete from partners where partner_id = ?"
static final java.lang.String FIND_BY_USERNAME_AND_PASSWORD "select partner_id from partners where username = ? and password = ?"
static final java.lang.String INSERT_PARTNERS "insert into partners cols( partner_id, username, password, active, expiration_date, partner_name, description, email, telephone, mobile_phone ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )"
static final java.lang.String PARTNER_ID_SEQUENCE "sequence_partner_id"
static final java.lang.String SELECT_PARTNERS "select * from partners where partner_id = ?"
static final java.lang.String UPDATE_PARTNERS "update partners set username = ?, password = ? active = ?, expiration_date = ?, partner_name = ?, description = ?, email = ?, telephone = ?, mobile_phone = ? where partner_id = ?"

biz.wedoit4u.databeans.PartnerStyleBean
public static final java.lang.String CACHE_NAME "PartnerStyleBeanCache"

biz.wedoit4u.databeans.biz.wedoit4u.databeans.PartnerStyleHelper
static final java.lang.String ALL_PARTNER_STYLES "select style_class_id, partner_id from partner_styles"
static final java.lang.String DELETE_PARTNER_STYLES "delete from partner_styles where style_class_id = ? and partner_id = ?"
static final java.lang.String FIND_BY_CUSTOMER "select style_class_id, partner_id from partner_styles where partner_id = ?"
static final java.lang.String INSERT_PARTNER_STYLES "insert into partner_styles cols( style_class_id, partner_id, color, font_family, font_weight, font_size, background_color, text_align, vertical_align, width, height, border_style, border_width, padding_top, padding_left, padding_right, padding_bottom, text_decoration ) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )"
static final java.lang.String SELECT_PARTNER_STYLES "select * from partner_styles where style_class_id = ? and partner_id = ?"
static final java.lang.String UPDATE_PARTNER_STYLES "update partner_styles set color = ?, font_family = ?, font_weight = ?, font_size = ?, background_color = ?, text_align = ?, vertical_align = ?, width = ?, height = ?, border_style = ?, border_width = ?, padding_top = ?, padding_left = ?, padding_right = ?, padding_bottom = ?, text_decoration = ? where style_class_id = ? and partner_id = ?"

biz.wedoit4u.databeans.SitePropertyBean
public static final int BOTTOM_RAIL 0
public static final java.lang.String CACHE_NAME "SitePropertyBeanCache"
public static final java.lang.String FOOTER " "
public static final java.lang.String HEADER " "
public static final int LEFT_RAIL 0
public static final int RIGHT_RAIL 0
public static final int TOP_RAIL 0

biz.wedoit4u.databeans.biz.wedoit4u.databeans.SitePropertyHelper
static final java.lang.String ALL_SITE_PROPERTIES "select customer_id from site_properties"
static final java.lang.String DELETE_SITE_PROPERTIES "delete from site_properties where customer_id = ?"
static final java.lang.String INSERT_SITE_PROPERTIES "insert into site_properties cols( customer_id, top_rail, left_rail, right_rail, bottom_rail ) values ( ?, ?, ?, ?, ? )"
static final java.lang.String NULL_CLOBS "update site_properties set header = \' \', footer = \' \' where customer_id = ?"
static final java.lang.String SELECT_SITE_PROPERTIES "select * from site_properties where customer_id = ?"
static final java.lang.String UPDATE_CLOBS "select header, footer from site_properties where customer_id = ? for update"
static final java.lang.String UPDATE_SITE_PROPERTIES "update site_properties set top_rail = ?, left_rail = ?, right_rail = ?, bottom_rail = ? where customer_id = ?"

biz.wedoit4u.databeans.StyleClassBean
public static final java.lang.String CACHE_NAME "StyleClassBeanCache"

biz.wedoit4u.databeans.biz.wedoit4u.databeans.StyleClassHelper
static final java.lang.String ALL_STYLE_CLASSES "select * from style_classes"
static final java.lang.String DELETE_STYLE_CLASSES "delete from style_classes where style_class_id = ?"
static final java.lang.String INSERT_STYLE_CLASSES "insert into style_classes cols( style_class_id, class_name, description ) values ( ?, ?, ? )"
static final java.lang.String SELECT_STYLE_CLASSES "select * from style_classes where style_class_id = ?"
static final java.lang.String STYLE_CLASS_ID_SEQUENCE "sequence_style_class_id"
static final java.lang.String UPDATE_STYLE_CLASSES "update style_classes set class_name = ?, description = ? where style_class_id = ?"

biz.wedoit4u.ejb.entity.CustomerBean
protected static final char DEFAULT_ACTIVE 78

biz.wedoit4u.ejb.entity.EntityBeanJNDILocations
public static final java.lang.String CATEGORIES_LOCATION "java:comp/env/ejb/entity/Categories"
public static final java.lang.String CONTENTS_LOCATION "java:comp/env/ejb/entity/Contents"
public static final java.lang.String CUSTOMER_TYPES_LOCATION "java:comp/env/ejb/entity/CustomerTypes"
public static final java.lang.String CUSTOMERS_LOCATION "java:comp/env/ejb/entity/Customers"
public static final java.lang.String SITE_PROPERTIES_LOCATION "java:comp/env/ejb/entity/SiteProperties"

biz.wedoit4u.ejb.session.DateFormatterBean
public static final java.lang.String DATETIMEFORMAT "yyyy-MM-dd\'T\'HH:mm:ss"
public static final java.lang.String DAYFORMAT "yyyy-MM-dd"
public static final java.lang.String SQLTIMESTAMPFORMAT "yyyy-MM-dd HH:mm:ss"
public static final java.lang.String TIMEFORMAT "HH:mm:ss"

biz.wedoit4u.ejb.session.SessionBeanProvider
public static final java.lang.String DATABASE_ACTION_LOCATION "java:comp/env/ejb/session/DatabaseAction"
public static final java.lang.String DATE_FORMATTER_LOCATION "java:comp/env/ejb/session/DateFormatter"

org.rakeshv.*

org.rakeshv.dbutils.CloseResources
public static final boolean CLOSE_ASSOCIATED_RESOURCES true
public static final boolean CLOSE_SPECIFIED_RESOURCE false

org.rakeshv.filters.CachingFilter
private static final java.lang.String BASE_DIRECTORY "/tmp/org.rakeshv/filters/cache"
public static final java.lang.String NO_PURGE_TIME "-1"

org.rakeshv.filters.CachingFilter.Attributes
public static final boolean CLEAN_BASE_DIRECTORY true
public static final boolean NO_CLEAN_BASE_DIRECTORY false
public static final int NO_PURGE_INTERVAL -1
public static final int NO_TIME_TO_LIVE -1

org.rakeshv.filters.CompressionFilter
public static final int DEFLATE_COMPRESSION 1
public static final int GZIP_COMPRESSION 3
public static final int ZIP_COMPRESSION 2

org.rakeshv.gui.SlideShow
public static final boolean CONTINUE_PLAYBACK false
public static final boolean SPECIFIED_DIRECTORY_ONLY false
public static final boolean STOP_PLAYBACK true
public static final boolean TRAVERSE_SUBDIRECTORIES true

org.rakeshv.mail.MailPreferences
public static final boolean COPY_SENT_MESSAGES true
public static final int DELETE_PERMANENTLY 1
public static final int DISPLAY_ALL_MESSAGES 1000
public static final boolean DO_NOT_COPY_SENT_MESSAGES false
public static final int MARK_AS_DELETED 2
public static final int MOVE_TO_TRASH 0

org.rakeshv.net.NNTPSocket
public static final boolean CHECK_COMMAND_RESPONSE true
public static final java.lang.String COMMAND_TERMINATOR "\r\n"
public static final boolean NO_CHECK_COMMAND_RESPONSE false
public static final boolean NO_WILD_CARDS false
public static final boolean RETURN_GROUP_DETAILS true
public static final boolean RETURN_GROUP_NAMES false
public static final boolean USE_WILD_CARDS true

org.rakeshv.tex.ISOToASCII
public static final boolean DO_NULL_CHECK true
public static final boolean STRICT_ASCII true

org.rakeshv.tex.ISOToTeX
public static final boolean DO_NULL_CHECK true

org.rakeshv.tex.TransformDocumentParts
public static final boolean HAS_TITLE true
public static final boolean NO_RESET_COUNTER false
public static final boolean NO_TITLE false
public static final boolean RESET_COUNTER true

org.rakeshv.utils.Calendar
public static final int ROUND_AUTO 3
public static final int ROUND_DOWN 2
public static final int ROUND_UP 1

org.rakeshv.utils.DataStructure<T>
public static final int DYNAMIC 2
public static final int FIFO 0
public static final int FIFO_IMPLEMENTATION 0
public static final int LRU 1
public static final int LRU_IMPLEMENTATION 1

org.rakeshv.utils.org.rakeshv.utils.DynamicCache
static final java.lang.String CLEAN_INTERVAL_PROPERTY "org.rakeshv.utils.DynamicCache.cleanInterval"
private static final java.lang.String CLEAN_INTERVAL_VALUE "600"
static final int CONCURRENCY 16

org.rakeshv.utils.JCrypt
private static final int ITERATIONS 16

org.rakeshv.utils.org.rakeshv.utils.LinkedHashMap
static final int DEFAULT_CAPACITY 16
static final float DEFAULT_LOAD_FACTOR 1.0f
static final boolean FIFO_CACHE true
static final boolean LRU_CACHE true

org.rakeshv.utils.ObjectCache<K,V>
public static final java.lang.String TOTAL_ITEMS_PROPERTY "org.rakeshv.utils.ObjectCache.totalItems"

org.rakeshv.utils.SharedObject<T>
public static final java.lang.String TOTAL_ITEMS_PROPERTY "org.rakeshv.utils.SharedObject.totalItems"


Rakesh API

Copyright © 2002-2005 - Rakesh Vidyadharan