code
stringlengths
3
1.18M
language
stringclasses
1 value
package net.petrikainulainen.spring.social.signinmvc.security.service; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.dao.DataAccessException; import org.springframework.security.core.userdetails.UserDetails; import org.springframework.security.core.userdetails.UserDetailsService; ...
Java
package net.petrikainulainen.spring.social.signinmvc.security.service; import net.petrikainulainen.spring.social.signinmvc.security.dto.ExampleUserDetails; import net.petrikainulainen.spring.social.signinmvc.user.model.User; import net.petrikainulainen.spring.social.signinmvc.user.repository.UserRepository; import org...
Java
package net.petrikainulainen.spring.social.signinmvc.security.controller; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; /** * @auth...
Java
package net.petrikainulainen.spring.social.signinmvc.security.controller; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; /** * @auth...
Java
package net.petrikainulainen.spring.social.signinmvc.security.util; import net.petrikainulainen.spring.social.signinmvc.security.dto.ExampleUserDetails; import net.petrikainulainen.spring.social.signinmvc.user.model.User; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.security.auth...
Java
package net.petrikainulainen.spring.social.signinmvc.security.dto; import net.petrikainulainen.spring.social.signinmvc.user.model.Role; import net.petrikainulainen.spring.social.signinmvc.user.model.SocialMediaService; import org.apache.commons.lang3.builder.ToStringBuilder; import org.springframework.security.core.Gr...
Java
package net.petrikainulainen.spring.social.signinmvc.config; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.*; import org.springframework.core.env.Environment; import org.springframework.security.crypto.encrypt.Encryptors; import org.springframework.social....
Java
package net.petrikainulainen.spring.social.signinmvc.config; import net.petrikainulainen.spring.social.signinmvc.security.service.RepositoryUserDetailsService; import net.petrikainulainen.spring.social.signinmvc.security.service.SimpleSocialUserDetailsService; import net.petrikainulainen.spring.social.signinmvc.user.r...
Java
package net.petrikainulainen.spring.social.signinmvc.config; import com.jolbox.bonecp.BoneCPDataSource; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.core.env.Environment; import org.springframework.data.jpa.repository.config...
Java
package net.petrikainulainen.spring.social.signinmvc.config; import org.springframework.context.MessageSource; import org.springframework.context.annotation.*; import org.springframework.context.support.PropertySourcesPlaceholderConfigurer; import org.springframework.context.support.ResourceBundleMessageSource; /** ...
Java
package net.petrikainulainen.spring.social.signinmvc.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.ViewResolver; import org.springframework.web....
Java
package net.petrikainulainen.spring.social.signinmvc.config; import org.sitemesh.config.ConfigurableSiteMeshFilter; import org.springframework.web.WebApplicationInitializer; import org.springframework.web.context.ContextLoaderListener; import org.springframework.web.context.support.AnnotationConfigWebApplicationContex...
Java
package net.petrikainulainen.spring.social.signinmvc.user.service; import net.petrikainulainen.spring.social.signinmvc.user.dto.RegistrationForm; import net.petrikainulainen.spring.social.signinmvc.user.model.User; import net.petrikainulainen.spring.social.signinmvc.user.repository.UserRepository; import org.slf4j.Log...
Java
package net.petrikainulainen.spring.social.signinmvc.user.service; import net.petrikainulainen.spring.social.signinmvc.user.dto.RegistrationForm; import net.petrikainulainen.spring.social.signinmvc.user.model.User; /** * @author Petri Kainulainen */ public interface UserService { /** * Creates a new user ...
Java
package net.petrikainulainen.spring.social.signinmvc.user.service; /** * The exception is thrown when the email given during the registration * phase is already found from the database. * @author Petri Kainulainen */ public class DuplicateEmailException extends Exception { public DuplicateEmailException(Strin...
Java
package net.petrikainulainen.spring.social.signinmvc.user.controller; import net.petrikainulainen.spring.social.signinmvc.security.util.SecurityUtil; import net.petrikainulainen.spring.social.signinmvc.user.dto.RegistrationForm; import net.petrikainulainen.spring.social.signinmvc.user.model.SocialMediaService; import ...
Java
package net.petrikainulainen.spring.social.signinmvc.user.validation; import javax.validation.ConstraintValidator; import javax.validation.ConstraintValidatorContext; /** * @author Petri Kainulainen */ public class PasswordsNotEmptyValidator implements ConstraintValidator<PasswordsNotEmpty, Object> { private S...
Java
package net.petrikainulainen.spring.social.signinmvc.user.validation; import javax.validation.ConstraintValidator; import javax.validation.ConstraintValidatorContext; /** * @author Petri Kainulainen */ public class PasswordsNotEqualValidator implements ConstraintValidator<PasswordsNotEqual, Object> { private S...
Java
package net.petrikainulainen.spring.social.signinmvc.user.validation; import javax.validation.Constraint; import javax.validation.Payload; import java.lang.annotation.Documented; import java.lang.annotation.Retention; import java.lang.annotation.Target; import static java.lang.annotation.ElementType.ANNOTATION_TYPE; ...
Java
package net.petrikainulainen.spring.social.signinmvc.user.validation; import javax.validation.ConstraintValidatorContext; import java.lang.reflect.Field; /** * @author Petri Kainulainen */ public class ValidatorUtil { public static void addValidationError(String field, ConstraintValidatorContext context) { ...
Java
package net.petrikainulainen.spring.social.signinmvc.user.validation; import static java.lang.annotation.ElementType.*; import static java.lang.annotation.RetentionPolicy.*; import javax.validation.Constraint; import javax.validation.Payload; import java.lang.annotation.Documented; import java.lang.annotation.Retenti...
Java
package net.petrikainulainen.spring.social.signinmvc.user.model; /** * @author Petri Kainulainen */ public enum SocialMediaService { FACEBOOK, TWITTER }
Java
package net.petrikainulainen.spring.social.signinmvc.user.model; /** * @author Petri Kainulainen */ public enum Role { ROLE_USER }
Java
package net.petrikainulainen.spring.social.signinmvc.user.repository; import net.petrikainulainen.spring.social.signinmvc.user.model.User; import org.springframework.data.jpa.repository.JpaRepository; /** * @author Petri Kainulainen */ public interface UserRepository extends JpaRepository<User, Long> { public ...
Java
package net.petrikainulainen.spring.social.signinmvc.user.dto; import net.petrikainulainen.spring.social.signinmvc.user.model.SocialMediaService; import net.petrikainulainen.spring.social.signinmvc.user.validation.PasswordsNotEmpty; import net.petrikainulainen.spring.social.signinmvc.user.validation.PasswordsNotEqual;...
Java
package net.petrikainulainen.spring.social.signinmvc.common.model; import org.fest.assertions.Assertions; import org.fest.assertions.GenericAssert; import org.joda.time.DateTime; /** * @author Petri Kainulainen */ public class BaseEntityAssert extends GenericAssert<BaseEntityAssert, BaseEntity> { public BaseEn...
Java
package net.petrikainulainen.spring.social.signinmvc.security.util; import net.petrikainulainen.spring.social.signinmvc.security.dto.ExampleUserDetails; import net.petrikainulainen.spring.social.signinmvc.security.dto.ExampleUserDetailsAssert; import net.petrikainulainen.spring.social.signinmvc.user.model.SocialMediaS...
Java
package net.petrikainulainen.spring.social.signinmvc.security.dto; import net.petrikainulainen.spring.social.signinmvc.user.model.Role; import net.petrikainulainen.spring.social.signinmvc.user.model.SocialMediaService; import org.fest.assertions.Assertions; import org.fest.assertions.GenericAssert; import org.springfr...
Java
package net.petrikainulainen.spring.social.signinmvc; /** * @author Petri Kainulainen */ public class WebTestConstants { public static final String FORM_FIELD_EMAIL = "email"; public static final String FORM_FIELD_FIRST_NAME = "firstName"; public static final String FORM_FIELD_LAST_NAME = "lastName"; ...
Java
package net.petrikainulainen.spring.social.signinmvc.config; import net.petrikainulainen.spring.social.signinmvc.user.service.UserService; import org.springframework.context.MessageSource; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.spring...
Java
package net.petrikainulainen.spring.social.signinmvc.user.validation; import org.fest.assertions.Assertions; import org.fest.assertions.GenericAssert; import javax.validation.ConstraintViolation; import java.util.Set; /** * @author Petri Kainulainen */ public abstract class ConstraintViolationAssert<T> extends Gen...
Java
package net.petrikainulainen.spring.social.signinmvc.user.validation; /** * @author Petri Kainulainen */ @PasswordsNotEqual( passwordFieldName = "password", passwordVerificationFieldName = "passwordVerification" ) public class PasswordsNotEqualDTO { private String password; private String pa...
Java
package net.petrikainulainen.spring.social.signinmvc.user.validation; import javax.validation.ConstraintViolation; import java.util.Set; /** * @author Petri Kainulainen */ public class PasswordsNotEqualAssert extends ConstraintViolationAssert<PasswordsNotEqualDTO> { private static final String VALIDATION_ERROR...
Java
package net.petrikainulainen.spring.social.signinmvc.user.validation; import javax.validation.ConstraintViolation; import java.util.Set; /** * @author Petri Kainulainen */ public class PasswordsNotEmptyAssert extends ConstraintViolationAssert<PasswordsNotEmptyDTO> { private static final String VALIDATION_ERROR...
Java
package net.petrikainulainen.spring.social.signinmvc.user.validation; /** * @author Petri Kainulainen */ @PasswordsNotEmpty( triggerFieldName = "trigger", passwordFieldName = "password", passwordVerificationFieldName = "passwordVerification" ) public class PasswordsNotEmptyDTO { private ...
Java
package net.petrikainulainen.spring.social.signinmvc.user.model; import org.springframework.test.util.ReflectionTestUtils; /** * @author Petri Kainulainen */ public class UserBuilder { private Long id; private String email; private String firstName; private String lastName; private String p...
Java
package net.petrikainulainen.spring.social.signinmvc.user.model; import org.fest.assertions.Assertions; import org.fest.assertions.GenericAssert; /** * @author Petri Kainulainen */ public class UserAssert extends GenericAssert<UserAssert, User> { private UserAssert(User actual) { super(UserAssert.class...
Java
package net.petrikainulainen.spring.social.signinmvc.user.dto; import net.petrikainulainen.spring.social.signinmvc.user.model.SocialMediaService; /** * @author Petri Kainulainen */ public class RegistrationFormBuilder { private RegistrationForm dto; public RegistrationFormBuilder() { dto = new Reg...
Java
package net.petrikainulainen.spring.social.signinmvc.user.dto; import net.petrikainulainen.spring.social.signinmvc.user.model.SocialMediaService; import org.fest.assertions.GenericAssert; import static org.fest.assertions.Assertions.assertThat; /** * @author Petri Kainulainen */ public class RegistrationFormAssert...
Java
package kr.co.killers.jobs.controller; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import ...
Java
package com.harpy.join.controller; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; @Controller public class JoinController { ...
Java
package com.harpy.login.controller; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; @Controller public class LoginController ...
Java
package com.harpy.support.spring.security.customAuth; import java.util.Collection; import org.springframework.security.core.GrantedAuthority; import org.springframework.security.core.userdetails.User; public class UserMapDetailsModel extends User { public UserMapDetailsModel(String username, String password...
Java
package com.harpy.support.spring.security.customAuth; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; import java.util.Collection; import java.util.HashMap; import java.util.Map; import javax.sql.DataSource; import org.springframework.security.core.GrantedAuthority; i...
Java
package com.harpy.support.spring.security.customAuth; import java.lang.reflect.Constructor; import java.lang.reflect.InvocationTargetException; import java.util.ArrayList; import java.util.HashSet; import java.util.List; import java.util.Set; import javax.sql.DataSource; import org.springframework.context...
Java
package com.harpy.support.spring.security.customAuth; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Types; import javax.sql.DataSource; import org.springframework.jdbc.core.SqlParameter; public abstract class MappingSqlQuery extends org.springframework.jdbc.object.MappingSqlQuery { ...
Java
package com.harpy.support.spring; import javax.annotation.Resource; import org.mybatis.spring.SqlSessionTemplate; import org.mybatis.spring.support.SqlSessionDaoSupport; /** * * @author hycho Spring-mybatis 1.2.0 issue, get out @autowired... So create * BaseSqlSessionDaoSupport class extends Sq...
Java
package com.harpy.support.spring; import javax.annotation.PostConstruct; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.s...
Java
package com.harpy.constants; import org.springframework.core.env.Environment; public class ConfigurationConstant { public static Environment env = null; }
Java
package com.harpy.home.controller; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; @Controller public class HomeController { ...
Java
package com.harpy.repeat.service.impl; import java.util.List; import java.util.Map; import javax.annotation.Resource; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import com.harpy.repeat.dao.RepeatDao; import com.harpy.repeat.service.Repe...
Java
package com.harpy.repeat.service; import java.util.List; import java.util.Map; public interface RepeatService { public List<Map<String, Object>> selectRepeatList(Map<String, Object> params) throws Exception; public int insertRepeat(Map<String, Object> params) throws Exception; public int deleteRepea...
Java
package com.harpy.repeat.controller; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.annotation.Resource; import javax.servlet.http.HttpServletRequest; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Controller; import org...
Java
package com.harpy.repeat.dao.impl; import java.util.List; import java.util.Map; import org.springframework.stereotype.Repository; import com.harpy.repeat.dao.RepeatDao; import com.harpy.support.spring.HarpySqlSessionDaoSupport; @Repository("repeatDao") public class RepeatDaoImpl extends HarpySqlSessionDa...
Java
package com.harpy.repeat.dao; import java.util.List; import java.util.Map; public interface RepeatDao{ public List<Map<String, Object>> selectRepeatList(Map<String, Object> params); public int insertRepeat(Map<String, Object> params); public int deleteRepeat(Map<String, Object> params); }
Java
package com.harpy.sample.service.impl; import java.util.List; import java.util.Map; import javax.annotation.Resource; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import com.harpy.sample.dao.SampleDao; import com.harpy.sample.service.Samp...
Java
package com.harpy.sample.service; import java.util.List; import java.util.Map; /** * 샘플을 위한 서비스 인터페이스 클래스를 정의한다. * * @author 조호영. * @since 2013.11.28 * @version 0.1 * @see * * <pre> * << 개정이력(Modification Information) >> * * 수정일 수정자 수정내용 * ------- -------- ...
Java
package com.harpy.sample.contoller; import java.util.HashMap; import java.util.Map; import javax.annotation.Resource; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springf...
Java
package com.harpy.sample.dao.impl; import java.util.List; import java.util.Map; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Repository; import com.harpy.sample.dao.SampleDao; import com.harpy.support.spring.HarpySqlSessionDaoSupport; @Repository("sample...
Java
package com.harpy.sample.dao; import java.util.List; import java.util.Map; import org.mybatis.spring.support.SqlSessionDaoSupport; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Repository; public interface SampleDao{ static final Logger log = LoggerFacto...
Java
package com.harpy.utils; import java.util.StringTokenizer; import java.util.Vector; import java.util.regex.Matcher; import java.util.regex.Pattern; public final class StringUtil { /** * <pre> * 문자열의 일부분을 랜덤하게 Asterisk 로 치환 * 주의) * 1. 화면상에 표현되는 정보에 사용할 경우 반복된 조회(조회시 마다 * 처리되는 부분이 다르므로)를 통해 모든 문자열을...
Java
package com.harpy.utils; import java.io.File; import java.io.FileWriter; import java.io.OutputStreamWriter; import java.io.Reader; import java.io.StringWriter; import java.net.URL; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import javax.xml.parsers.DocumentBuild...
Java
package com.harpy.utils; import java.io.Reader; import java.sql.Clob; import java.sql.ResultSet; import java.sql.ResultSetMetaData; import java.sql.SQLException; import java.util.ArrayList; import java.util.Collection; import java.util.Enumeration; import java.util.HashMap; import java.util.Map; import javax.servlet....
Java
package com.harpy.utils; import java.io.ByteArrayInputStream; import java.io.IOException; import java.io.InputStream; import java.io.UnsupportedEncodingException; /** * MD5 처리와 관련된 메소드 모음 * * @author hun-jung, Park / 2010-11 / 초기 작성 */ public class MD5Util { private static final int BUFFER_SIZE = 1...
Java
package com.harpy.utils; import java.util.Map; import org.springframework.security.core.context.SecurityContextHolder; import com.harpy.support.spring.security.customAuth.UserMapDetailsModel; public class SecurityUtil { public static Map<String, Object> getLoginDetailMap() { Object principal = Security...
Java
package com.harpy.utils; import java.util.Random; /** * 랜덤 처리와 관련된 메소드 모음 * * @author hun-jung, Park / 2010-11 / 초기 작성 */ public class RandomUtil { private static final Random RANDOM_OBJ = new Random(); /* * 숫자 0 은 없음 - 영문 O 와 혼동이 되므로 - 불특정 값을 가져 오는것이 목적이므로 꼭 0 이 있어야 할 이유는 없다 */ private st...
Java
package com.harpy.utils; import java.net.MalformedURLException; import java.net.URL; import java.util.Map; import javax.xml.namespace.QName; import javax.xml.rpc.Service; import javax.xml.rpc.ServiceException; import javax.xml.rpc.ServiceFactory; import javax.xml.soap.MessageFactory; import javax.xml.soap....
Java
package com.harpy.utils; import java.io.Serializable; import java.lang.reflect.*; import java.util.ArrayList; import java.util.regex.Matcher; import java.util.regex.Pattern; public class ValueUtil implements Serializable { private static final long serialVersionUID = -8905477635096785762L; /** * <pre...
Java
package com.harpy.utils; import java.lang.reflect.Constructor; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class ObjectUtil { static final Logger log = LoggerFactory.getLogger(ObjectUtil.class); /** * 클래스명으로 객체를 로딩한다. * * @param className * @return * @throws ClassNotF...
Java
package com.harpy.utils; import java.math.BigDecimal; import java.text.DecimalFormat; /** * 숫자 처리와 관련된 메소드 모음 * * @author hun-jung, Park / 2010-11 / 초기 작성 */ public class NumericUtil { public final static String DEFAULT_FORMAT = "#,##0"; public final static String DEFAULT_VALUE = "0"; /** * ...
Java
package com.harpy.utils; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; public class DateUtil { public final static int SUNDAY = 1; public final static int MONDAY = 2; public final static int TUESDAY = 3; public final static int WEDNESDAY = 4; public final static ...
Java
package com.harpy.search.controller; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; @Controller public class SearchControlle...
Java
/* ** ** Jul. 20, 2009 ** ** The author disclaims copyright to this source code. ** In place of a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. *...
Java
/* ** ** Jul. 20, 2009 ** ** The author disclaims copyright to this source code. ** In place of a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. *...
Java
/* ** ** Jul. 20, 2009 ** ** The author disclaims copyright to this source code. ** In place of a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. *...
Java
/* ** ** Jul. 20, 2009 ** ** The author disclaims copyright to this source code. ** In place of a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. *...
Java
/* ** ** Jul. 20, 2009 ** ** The author disclaims copyright to this source code. ** In place of a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. *...
Java
/* ** ** Jul. 20, 2009 ** ** The author disclaims copyright to this source code. ** In place of a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. *...
Java
/* ** ** Jul. 20, 2009 ** ** The author disclaims copyright to this source code. ** In place of a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. *...
Java
/* ** ** Jul. 20, 2009 ** ** The author disclaims copyright to this source code. ** In place of a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. *...
Java
/* ** ** Jul. 20, 2009 ** ** The author disclaims copyright to this source code. ** In place of a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. *...
Java
/* ** ** Jul. 20, 2009 ** ** The author disclaims copyright to this source code. ** In place of a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. *...
Java
/* ** ** Jul. 20, 2009 ** ** The author disclaims copyright to this source code. ** In place of a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. *...
Java
/* ** ** Jul. 20, 2009 ** ** The author disclaims copyright to this source code. ** In place of a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. *...
Java
/* ** ** Jul. 20, 2009 ** ** The author disclaims copyright to this source code. ** In place of a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. *...
Java
/* ** ** Jul. 20, 2009 ** ** The author disclaims copyright to this source code. ** In place of a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. *...
Java
/* ** ** Jul. 20, 2009 ** ** The author disclaims copyright to this source code. ** In place of a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. *...
Java
/* ** ** Jul. 20, 2009 ** ** The author disclaims copyright to this source code. ** In place of a legal notice, here is a blessing: ** ** May you do good and not evil. ** May you find forgiveness for yourself and forgive others. ** May you share freely, never taking more than you give. *...
Java
/** * Copyright 2010 Philippe Beaudoin * * 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 l...
Java
/** * Copyright 2010 Philippe Beaudoin * * 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 l...
Java
/** * Copyright 2010 Philippe Beaudoin * * 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 l...
Java
/** * Copyright 2010 Philippe Beaudoin * * 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 l...
Java
/** * Copyright 2010 Philippe Beaudoin * * 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 agr...
Java
/** * Copyright 2010 Philippe Beaudoin * * 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 l...
Java
/** * Copyright 2010 Philippe Beaudoin * * 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 agr...
Java
/** * Copyright 2010 Philippe Beaudoin * * 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 agr...
Java
/** * Copyright 2010 Philippe Beaudoin * * 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 agr...
Java
/** * Copyright 2010 Philippe Beaudoin * * 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 agr...
Java
/** * Copyright 2010 Philippe Beaudoin * * 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 agr...
Java
/** * Copyright 2010 Philippe Beaudoin * * 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 agr...
Java