📄 sampleserviceimpl.java
字号:
/* Copyright 2004, 2005, 2006 Acegi Technology Pty Limited * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */package org.acegisecurity.vote;import org.acegisecurity.context.SecurityContextHolder;import org.apache.log4j.Logger;import java.util.List;import java.util.Vector;/** * For label unit tests. * * @author Greg Turnquist * @version $Id: SampleServiceImpl.java 1750 2006-11-14 22:07:36Z benalex $ */public class SampleServiceImpl implements SampleService { //~ Instance fields ================================================================================================ Logger logger = Logger.getLogger(SampleServiceImpl.class); //~ Methods ======================================================================================================== public void doSomethingOnThis(SampleBlockOfData block1, SampleBlockOfData block2) { if (logger.isDebugEnabled()) { logger.debug("You made it! Your context is " + SecurityContextHolder.getContext().getAuthentication()); } if (logger.isDebugEnabled()) { logger.debug("Block1 is " + block1); } if (logger.isDebugEnabled()) { logger.debug("Block2 is " + block2); } } public List getTheSampleData() { if (logger.isDebugEnabled()) { logger.debug(SecurityContextHolder.getContext().getAuthentication().getName() + " is requesting some sample data."); } List dataList = new Vector(); SampleBlockOfData block; block = new SampleBlockOfData(); block.setId("001"); block.setSomeData(SampleBlockOfData.DATA_LABEL_BLUE); dataList.add(block); block = new SampleBlockOfData(); block.setId("002"); block.setSomeData(SampleBlockOfData.DATA_LABEL_ORANGE); dataList.add(block); block = new SampleBlockOfData(); block.setId("003"); block.setSomeData(SampleBlockOfData.DATA_LABEL_SHARED); dataList.add(block); return dataList; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -