code
stringlengths
3
1.18M
language
stringclasses
1 value
package com.legendshop.business.service; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.Event; import java.util.List; public abstract interface EventService { public abstract List<Event> getEvent(String paramStri...
Java
package com.legendshop.business.service; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.Partner; import java.util.List; public abstract interface PartnerService { public abstract List<Partner> getPartner(String p...
Java
package com.legendshop.business.service; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.core.service.ShopService; import com.legendshop.model.entity.ShopDetail; import com.legendshop.model.entity.UserDetail; public abstract inter...
Java
package com.legendshop.business.service; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.UserAddress; import java.util.List; public abstract interface UserAddressService { public abstract List<UserAddress> getUser...
Java
package com.legendshop.business.service; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.NewsCategory; import java.util.List; public abstract interface NewsCategoryService { public abstract List<NewsCategory> getN...
Java
package com.legendshop.business.service; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.Brand; import java.util.List; public abstract interface BrandService { public abstract List<Brand> getBrand(String paramStri...
Java
package com.legendshop.business.service; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.HqlQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.News; import java.util.List; public abstract interface NewsService { publi...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.PartnerDao; import com.legendshop.business.service.PartnerService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.Partner; import com.leg...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.LuceneDao; import com.legendshop.business.service.LuceneService; import java.util.Date; import java.util.List; import org.springframework.beans.factory.annotation.Required; public class LuceneServiceImpl implements LuceneService ...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.UserDetailDao; import com.legendshop.business.service.UserDetailService; import com.legendshop.core.dao.support.HqlQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.core.dao.support.SqlQuery; import c...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.AdvertisementDao; import com.legendshop.business.service.AdvertisementService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.Advertisemen...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.CashFlowDao; import com.legendshop.business.service.CashFlowService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.CashFlow; import com....
Java
package com.legendshop.business.service.impl; import com.legendshop.core.dao.BaseDao; import com.legendshop.core.tag.TableCache; import com.legendshop.model.entity.ConstTable; import com.legendshop.model.entity.ConstTableId; import java.util.HashMap; import java.util.LinkedHashMap; import java.util.List; impo...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.ExternalLinkDao; import com.legendshop.business.service.ExternalLinkService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.core.exception.BusinessExce...
Java
package com.legendshop.business.service.impl; import java.util.ArrayList; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Locale; import java.util.Map; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import net.sf.json....
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.CashDao; import com.legendshop.business.service.CashService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.Cash; import com.legendshop.u...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.ProductDao; import com.legendshop.business.dao.ShopDetailDao; import com.legendshop.business.search.facade.ProductSearchFacade; import com.legendshop.business.service.ProductService; import com.legendshop.core.dao.support.CriteriaQu...
Java
package com.legendshop.business.service.impl; import com.legendshop.core.StartupService; import com.legendshop.core.plugins.Plugin; import com.legendshop.core.plugins.PluginConfig; import com.legendshop.util.AppUtils; import java.util.List; import java.util.Map; import javax.servlet.ServletContext; import o...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.common.CommentTypeEnum; import com.legendshop.business.dao.UserCommentDao; import com.legendshop.business.service.UserCommentService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSuppo...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.NewsDao; import com.legendshop.business.service.NewsService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.HqlQuery; import com.legendshop.core.dao.support.PageSupport; import com.lege...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.service.BaseService; import com.legendshop.core.constant.ParameterEnum; import com.legendshop.core.helper.PropertiesUtil; import com.legendshop.model.entity.ProductDetail; import com.legendshop.model.entity.ShopDetailView; import com.l...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.LogoDao; import com.legendshop.business.service.LogoService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.core.exception.BusinessException; import c...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.HotsearchDao; import com.legendshop.business.service.HotsearchService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.core.exception.BusinessException;...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.helper.TaskThread; import com.legendshop.business.service.LoginHistoryService; import com.legendshop.core.constant.ParameterEnum; import com.legendshop.core.dao.BaseDao; import com.legendshop.core.dao.support.CriteriaQuery; import com....
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.ShopDetailDao; import com.legendshop.business.dao.UserDetailDao; import com.legendshop.business.search.facade.ShopDetailSearchFacade; import com.legendshop.business.service.CommonUtil; import com.legendshop.business.service.ShopDeta...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.MyleagueDao; import com.legendshop.business.service.MyleagueService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.Myleague; import com....
Java
package com.legendshop.business.service.impl; import com.legendshop.business.common.CommonServiceUtil; import com.legendshop.business.service.CommonUtil; import com.legendshop.core.dao.BaseDao; import com.legendshop.model.entity.UserRole; import com.legendshop.model.entity.UserRoleId; import java.util.List; im...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.IndexJpgDao; import com.legendshop.business.service.IndexJpgService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.Indexjpg; public cl...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.EventDao; import com.legendshop.business.service.EventService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.Event; import com.legendsho...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.BrandDao; import com.legendshop.business.service.BrandService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.Brand; import com.legendsho...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.BasketDao; import com.legendshop.business.dao.ProductDao; import com.legendshop.business.service.BasketService; import com.legendshop.model.entity.Basket; import com.legendshop.model.entity.ProductDetail; import java.util.List; im...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.processor.PaymentProcessor; import com.legendshop.business.service.PaymentService; import java.util.Map; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Required; public c...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.PubDao; import com.legendshop.business.service.PubService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.core.exception.PermissionException; import c...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.service.AuthService; import com.legendshop.core.security.GrantedFunction; import com.legendshop.core.security.GrantedFunctionImpl; import com.legendshop.core.security.cache.AuthorityBasedUserCache; import com.legendshop.core.security.ca...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.PayTypeDao; import com.legendshop.business.service.PayTypeService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.PayType; import java.ut...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.DeliveryTypeDao; import com.legendshop.business.service.DeliveryTypeService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.DeliveryType; ...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.NsortDao; import com.legendshop.business.service.NsortService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.HqlQuery; import com.legendshop.core.dao.support.PageSupport; import com.le...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.service.IndexService; import com.legendshop.core.dao.BaseDao; import com.legendshop.model.UserInfo; import com.legendshop.model.entity.ShopDetailView; import org.springframework.beans.factory.annotation.Required; public class IndexSe...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.common.ProductStatusEnum; import com.legendshop.business.common.RoleEnum; import com.legendshop.business.common.ShopStatusEnum; import com.legendshop.business.dao.ShopDetailDao; import com.legendshop.business.event.EventId; import com....
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.UserAddressDao; import com.legendshop.business.service.UserAddressService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.UserAddress; im...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.ProductCommentDao; import com.legendshop.business.service.ProductCommentService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.HqlQuery; import com.legendshop.core.dao.support.PageSuppo...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.DeliveryCorpDao; import com.legendshop.business.service.DeliveryCorpService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.DeliveryCorp; ...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.ScoreDao; import com.legendshop.business.service.ScoreService; import com.legendshop.model.entity.Sub; import java.util.Map; public class ScoreServiceImpl implements ScoreService { private ScoreDao scoreDao; public...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.ImgFileDao; import com.legendshop.business.service.ImgFileService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.ImgFile; import com.leg...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.VisitLogDao; import com.legendshop.business.service.VisitLogService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.VisitLog; import com....
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.SystemParameterDao; import com.legendshop.business.dao.impl.SystemParameterDaoImpl; import com.legendshop.business.service.SystemParameterService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao....
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.SortDao; import com.legendshop.business.service.SortService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.core.exception.BusinessException; import c...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.NewsCategoryDao; import com.legendshop.business.dao.impl.NewsCategoryDaoImpl; import com.legendshop.business.service.NewsCategoryService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.P...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.OrderDao; import com.legendshop.business.service.OrderService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; public class OrderServiceImpl implements OrderService { ...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.dao.AskDao; import com.legendshop.business.service.AskService; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.Ask; import com.legendshop.util...
Java
package com.legendshop.business.service.impl; import com.legendshop.business.common.download.DownLoadCallBack; import com.legendshop.business.dao.BusinessDao; import com.legendshop.business.dao.DownloadLogDao; import com.legendshop.business.service.DownloadLogService; import com.legendshop.model.entity.DownloadL...
Java
package com.legendshop.business.service.dwr.impl; import com.legendshop.business.service.dwr.OptionService; import com.legendshop.core.dao.BaseDao; import com.legendshop.core.exception.ApplicationException; import com.legendshop.core.exception.BusinessException; import com.legendshop.util.AppUtils; import java....
Java
package com.legendshop.business.service.dwr.impl; import java.util.ArrayList; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Locale; import java.util.Map; import java.util.Random; import javax.servlet.http.HttpServletRequest; import net.sf.json.JSONArray; impo...
Java
package com.legendshop.business.service.dwr; import java.util.Map; public abstract interface OptionService { public abstract Map<Object, Object> getLinkedOptionsByHql(String paramString); public abstract Map<Object, Object> getLinkedOptionsBySql(String paramString); }
Java
package com.legendshop.business.service.dwr; import com.legendshop.util.AppUtils; import java.io.IOException; import java.io.StringReader; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import org.apache.log4j.Logger; import org.jdom.Document; import org.j...
Java
package com.legendshop.business.service.dwr; import com.legendshop.util.StringUtil; import java.text.DateFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; import org.directwebremoting.convert.BaseV20Converter; import org.directwebremo...
Java
package com.legendshop.business.service.dwr; import com.legendshop.business.service.AdminService; import com.legendshop.model.dynamic.Item; import com.legendshop.model.dynamic.Model; import com.legendshop.model.entity.Indexjpg; import java.util.List; import java.util.Map; public abstract interface DwrCommonS...
Java
package com.legendshop.business.service; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.HqlQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.core.dao.support.SqlQuery; import com.legendshop.model.entity.DynamicTemp; import com.legendsh...
Java
package com.legendshop.business.service.timer.impl; import com.legendshop.business.service.timer.HouseKeepService; public class HouseKeepServiceImpl implements HouseKeepService { public void turnOffBasket() { } public void turnOffShop() { } }
Java
package com.legendshop.business.service.timer.impl; import com.legendshop.business.common.CommonServiceUtil; import com.legendshop.business.common.OrderStatusEnum; import com.legendshop.business.common.PayTypeEnum; import com.legendshop.business.common.SubForm; import com.legendshop.business.common.SubStat...
Java
package com.legendshop.business.service.timer; import com.legendshop.business.common.SubForm; import com.legendshop.model.entity.Basket; import com.legendshop.model.entity.Sub; import java.util.List; public abstract interface SubService { public abstract void finishUnPay(); public abstract void...
Java
package com.legendshop.business.service.timer; public abstract interface HouseKeepService { public abstract void turnOffShop(); public abstract void turnOffBasket(); }
Java
package com.legendshop.business.service; import com.legendshop.core.dao.support.HqlQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.core.dao.support.SqlQuery; import com.legendshop.model.entity.UserDetail; public abstract interface UserDetailService { public abstract Long g...
Java
package com.legendshop.business.service; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.SystemParameter; public abstract interface SystemParameterService { public abstract SystemParameter getSystemParameter(String...
Java
package com.legendshop.business.service; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.Indexjpg; public abstract interface IndexJpgService { public abstract PageSupport getIndexJpg(CriteriaQuery paramCriteriaQuer...
Java
package com.legendshop.business.service; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.Hotsearch; import java.util.List; public abstract interface HotsearchService { public abstract List<Hotsearch> getHotsearch(...
Java
package com.legendshop.business.service; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.HqlQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.Nsort; import com.legendshop.model.entity.Sort; import java.util.List; public ...
Java
package com.legendshop.business.service; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; public abstract interface OrderService { public abstract PageSupport getOrderList(CriteriaQuery paramCriteriaQuery); }
Java
package com.legendshop.business.service; import com.legendshop.model.entity.Sub; import java.util.Map; public abstract interface ScoreService { public abstract void addScore(Sub paramSub); public abstract Map<String, Object> useScore(Sub paramSub, Long paramLong); public abstract Long ...
Java
package com.legendshop.business.service; import com.legendshop.business.form.SearchForm; import com.legendshop.business.form.UserForm; import com.legendshop.model.entity.ShopDetail; import com.legendshop.model.entity.ShopDetailView; import com.legendshop.model.entity.Sub; import javax.servlet.http.HttpServletRe...
Java
package com.legendshop.business.service; import com.legendshop.business.dao.BasketDao; import com.legendshop.model.entity.Basket; import java.util.List; import java.util.Map; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; i...
Java
package com.legendshop.business.service; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; public abstract interface BaseService { public abstract Object getSessionAttribute( HttpServletRequest paramHttpServletRequest, String paramString); publi...
Java
package com.legendshop.business.service; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.DeliveryCorp; import java.util.List; public abstract interface DeliveryCorpService { public abstract List<DeliveryCorp> getD...
Java
package com.legendshop.business.service; public abstract interface PaymentService { public abstract String payto(String paramString1, String paramString2, Integer paramInteger, String paramString3, String paramString4, String paramString5, String paramString6, String paramString7); }
Java
package com.legendshop.business.service; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.DeliveryType; import java.util.List; public abstract interface DeliveryTypeService { public abstract List<DeliveryType> getD...
Java
package com.legendshop.business.service; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.core.dao.support.SqlQuery; public abstract interface LoginHistoryService { public abstract void saveLoginHistory(String paramString1, ...
Java
package com.legendshop.business.service; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.ImgFile; import com.legendshop.model.entity.Product; import java.util.List; public abstract interface ImgFileService { publ...
Java
package com.legendshop.business.service; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.Sort; import java.util.List; public abstract interface SortService { public abstract List<Sort> getSortList(String paramStri...
Java
package com.legendshop.business.service; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.Myleague; import java.util.List; public abstract interface MyleagueService { public abstract List<Myleague> getMyleagueList(...
Java
package com.legendshop.business.service; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.CashFlow; import java.util.List; public abstract interface CashFlowService { public abstract List<CashFlow> getCashFlow(Stri...
Java
package com.legendshop.business.service; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.Logo; import java.util.List; public abstract interface LogoService { public abstract List<Logo> getLogoList(String paramStri...
Java
package com.legendshop.business.service; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.VisitLog; import java.util.List; public abstract interface VisitLogService { public abstract List<VisitLog> getVisitLogList(...
Java
package com.legendshop.business.service; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.Ask; import java.util.List; public abstract interface AskService { public abstract List<Ask> getAsk(String paramString); ...
Java
package com.legendshop.business.service; import com.legendshop.util.MD5Util; import java.util.Date; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.commons.logging.Log; import org.springframework.security.core.Authentication; import org.springframe...
Java
package com.legendshop.business.service; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.PayType; import java.util.List; public abstract interface PayTypeService { public abstract List<PayType> getPayTypeList(Stri...
Java
package com.legendshop.business.service; import com.legendshop.model.UserInfo; import com.legendshop.model.entity.ShopDetailView; public abstract interface IndexService { public abstract UserInfo getAdminIndex(String paramString, ShopDetailView paramShopDetailView); }
Java
package com.legendshop.business.service; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.Pub; import java.util.List; public abstract interface PubService { public abstract List<Pub> getPubList(String paramString);...
Java
package com.legendshop.business.service; import com.legendshop.core.dao.support.CriteriaQuery; import com.legendshop.core.dao.support.PageSupport; import com.legendshop.model.entity.Cash; import java.util.List; public abstract interface CashService { public abstract List<Cash> getCash(String paramString);...
Java
package com.legendshop.business.service; import com.legendshop.core.security.GrantedFunction; import com.legendshop.core.security.SecurityManager; import com.legendshop.core.security.service.FunctionService; import com.legendshop.model.entity.Function; import com.legendshop.model.entity.Role; import com.legends...
Java
package com.legendshop.business.service; import java.util.Date; import java.util.List; public abstract interface LuceneService { public abstract long getFirstPostIdByDate(int paramInt, Date paramDate); public abstract List getPostsToIndex(int paramInt, long paramLong1, long paramLong2); ...
Java
package com.legendshop.business.service; import com.legendshop.model.entity.DownloadLog; public abstract interface DownloadLogService { public abstract boolean checkCanDownload(String paramString1, String paramString2); public abstract boolean isUserOrderProduct(Long paramLong, S...
Java
package com.legendshop.business.service; import java.util.List; import java.util.Map; import javax.servlet.http.Cookie; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import org.apache.commons.lang.StringUtils; import org...
Java
package com.legendshop.business.service; import com.legendshop.core.dao.BaseDao; public abstract interface CommonUtil { public abstract void saveAdminRight(BaseDao paramBaseDao, String paramString); public abstract void saveUserRight(BaseDao paramBaseDao, String paramString); public abs...
Java
package com.legendshop.business.service; import com.legendshop.model.entity.Basket; import java.util.List; public abstract interface BasketService { public abstract void saveToCart(Long paramLong, String paramString1, String paramString2, String paramString3, String paramString4, Integer p...
Java
package com.legendshop.business.payment.alipay.util; import com.legendshop.business.payment.alipay.config.AlipayConfig; import java.io.UnsupportedEncodingException; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; public class Md5Encrypt { private static final char[] DIGI...
Java
package com.legendshop.business.payment.alipay.util; import com.legendshop.business.payment.alipay.config.AlipayConfig; import com.legendshop.business.payment.alipay.util.httpclient.HttpProtocolHandler; import com.legendshop.business.payment.alipay.util.httpclient.HttpRequest; import com.legendshop.business.payme...
Java
package com.legendshop.business.payment.alipay.util.httpclient; import java.io.IOException; import java.net.UnknownHostException; import org.apache.commons.httpclient.HttpClient; import org.apache.commons.httpclient.HttpConnectionManager; import org.apache.commons.httpclient.HttpMethod; import org.apa...
Java
package com.legendshop.business.payment.alipay.util.httpclient; import com.legendshop.business.payment.alipay.config.AlipayConfig; import java.io.UnsupportedEncodingException; import org.apache.commons.httpclient.Header; public class HttpResponse { private Header[] responseHeaders; private String st...
Java
package com.legendshop.business.payment.alipay.util.httpclient; import org.apache.commons.httpclient.NameValuePair; public class HttpRequest { public static final String METHOD_GET = "GET"; public static final String METHOD_POST = "POST"; private String url = ...
Java
package com.legendshop.business.payment.alipay.util.httpclient; public enum HttpResultType { STRING, BYTES; }
Java