updated API description
This commit is contained in:
@ -22,7 +22,7 @@ import javax.ws.rs.ext.Provider;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Joern Muehlencord (joern (at) muehlencord.de
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
@Provider
|
||||
public class BadRequestMapper implements ExceptionMapper<BadRequestException> {
|
||||
|
||||
@ -22,7 +22,7 @@ import javax.ws.rs.ext.Provider;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Joern Muehlencord (joern (at) muehlencord.de
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
@Provider
|
||||
public class ForbiddenMapper implements ExceptionMapper<ForbiddenException> {
|
||||
|
||||
@ -22,7 +22,7 @@ import javax.ws.rs.ext.Provider;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Joern Muehlencord (joern (at) muehlencord.de
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
@Provider
|
||||
public class NotAcceptableMapper implements ExceptionMapper<NotAcceptableException> {
|
||||
|
||||
@ -22,7 +22,7 @@ import javax.ws.rs.ext.Provider;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Joern Muehlencord (joern (at) muehlencord.de
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
@Provider
|
||||
public class NotAllowedMapper implements ExceptionMapper<NotAllowedException> {
|
||||
|
||||
@ -22,7 +22,7 @@ import javax.ws.rs.ext.Provider;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Joern Muehlencord (joern (at) muehlencord.de
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
@Provider
|
||||
public class NotAuthorizedMapper implements ExceptionMapper<NotAuthorizedException> {
|
||||
|
||||
@ -22,7 +22,7 @@ import javax.ws.rs.ext.Provider;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Joern Muehlencord (joern (at) muehlencord.de
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
@Provider
|
||||
public class NotFoundMapper implements ExceptionMapper<NotFoundException> {
|
||||
|
||||
@ -22,7 +22,7 @@ import javax.ws.rs.ext.Provider;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Joern Muehlencord (joern (at) muehlencord.de
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
@Provider
|
||||
public class NotSupportMapper implements ExceptionMapper<NotSupportedException> {
|
||||
|
||||
@ -16,9 +16,9 @@
|
||||
package de.muehlencord.shared.network.ldap;
|
||||
|
||||
/**
|
||||
* Exception used as wrapper for exepctions in ldap context
|
||||
* Exception used as wrapper for exceptions in LDAP context
|
||||
*
|
||||
* @author Joern Muehlencord
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
public class LDAPException extends Exception {
|
||||
|
||||
|
||||
@ -17,7 +17,7 @@ package de.muehlencord.shared.network.mail;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Joern Muehlencord
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
public class MailReaderConfiguration {
|
||||
|
||||
|
||||
@ -35,7 +35,7 @@ import org.slf4j.LoggerFactory;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Joern Muehlencord (joern (at) muehlencord.de)
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
public abstract class PoiUtil {
|
||||
|
||||
@ -239,8 +239,8 @@ public abstract class PoiUtil {
|
||||
}
|
||||
|
||||
/**
|
||||
* remove charecters which often cause troubles in other applications - e.g. em dash (long dash) is created by Excel
|
||||
* automatically
|
||||
* remove charecters which often cause troubles in other applications - e.g.
|
||||
* em dash (long dash) is created by Excel automatically
|
||||
*
|
||||
* @param sourceValue the input string to execute the replacement
|
||||
* @return sourceValue with replaced characters
|
||||
|
||||
@ -34,7 +34,6 @@ import org.apache.poi.ss.formula.ptg.Ptg;
|
||||
import org.apache.poi.ss.formula.ptg.RefPtgBase;
|
||||
import org.apache.poi.ss.usermodel.Cell;
|
||||
import org.apache.poi.ss.usermodel.CellStyle;
|
||||
import org.apache.poi.ss.usermodel.CellType;
|
||||
import org.apache.poi.ss.usermodel.DataValidation;
|
||||
import org.apache.poi.ss.usermodel.DataValidationHelper;
|
||||
import org.apache.poi.ss.usermodel.Row;
|
||||
@ -51,7 +50,7 @@ import org.slf4j.LoggerFactory;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Joern Muehlencord (joern (at) muehlencord.de)
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
public class WorkbookApp {
|
||||
|
||||
|
||||
@ -25,7 +25,7 @@ import org.apache.shiro.web.filter.authc.PassThruAuthenticationFilter;
|
||||
* found at http://balusc.omnifaces.org/2013/01/apache-shiro-is-it-ready-for-java-ee-6.html#MakeShiroJSFAjaxAware)
|
||||
* source by BalusC, adjusted to PassThruAuthenticationFilter by Joern Muehlencord
|
||||
* @author BalusC
|
||||
* @author Joern Muehlencord (joern at muehlencord.de)
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
public class FacesAjaxAwarePassThruAuthenticationFilter extends PassThruAuthenticationFilter {
|
||||
|
||||
|
||||
@ -22,7 +22,7 @@ import javax.faces.view.facelets.TagConfig;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Joern Muehlencord (joern at muehlencord.de)
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
public abstract class AbstractAccessControlTag extends AbstractTag {
|
||||
|
||||
|
||||
@ -22,7 +22,7 @@ import javax.faces.view.facelets.TagConfig;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Joern Muehlencord (joern at muehlencord.de)
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
public abstract class AbstractAuthenticationTag extends AbstractTag {
|
||||
|
||||
|
||||
@ -22,7 +22,7 @@ import javax.faces.view.facelets.TagConfig;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Joern Muehlencord (joern at muehlencord.de)
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
public abstract class AbstractPermissionTag extends AbstractAccessControlTag {
|
||||
|
||||
|
||||
@ -22,7 +22,7 @@ import javax.faces.view.facelets.TagConfig;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Joern Muehlencord (joern at muehlencord.de)
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
public abstract class AbstractRoleTag extends AbstractAccessControlTag {
|
||||
|
||||
|
||||
@ -24,7 +24,7 @@ import org.slf4j.LoggerFactory;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Joern Muehlencord (joern at muehlencord.de)
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
public abstract class AbstractTag extends TagHandler {
|
||||
|
||||
|
||||
@ -19,7 +19,7 @@ import javax.faces.view.facelets.TagConfig;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Joern Muehlencord (joern at muehlencord.de)
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
public class AuthenticatedTag extends AbstractAuthenticationTag {
|
||||
|
||||
|
||||
@ -19,7 +19,7 @@ import javax.faces.view.facelets.TagConfig;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Joern Muehlencord (joern at muehlencord.de)
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
public class GuestTag extends AbstractAuthenticationTag {
|
||||
|
||||
|
||||
@ -22,7 +22,7 @@ import org.apache.shiro.subject.Subject;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Joern Muehlencord (joern at muehlencord.de)
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
public class HasAnyPermissionTag extends AbstractPermissionTag {
|
||||
|
||||
|
||||
@ -22,7 +22,7 @@ import org.apache.shiro.subject.Subject;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Joern Muehlencord (joern at muehlencord.de)
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
public class HasAnyRolesTag extends AbstractRoleTag {
|
||||
|
||||
|
||||
@ -19,7 +19,7 @@ import javax.faces.view.facelets.TagConfig;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Joern Muehlencord (joern at muehlencord.de)
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
public class HasPermissionTag extends AbstractPermissionTag {
|
||||
|
||||
|
||||
@ -19,7 +19,7 @@ import javax.faces.view.facelets.TagConfig;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Joern Muehlencord (joern at muehlencord.de)
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
public class HasRoleTag extends AbstractRoleTag {
|
||||
|
||||
|
||||
@ -19,7 +19,7 @@ import javax.faces.view.facelets.TagConfig;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Joern Muehlencord (joern at muehlencord.de)
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
public class LacksPermissionTag extends AbstractPermissionTag {
|
||||
|
||||
|
||||
@ -19,7 +19,7 @@ import javax.faces.view.facelets.TagConfig;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Joern Muehlencord (joern at muehlencord.de)
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
public class LacksRoleTag extends AbstractRoleTag {
|
||||
|
||||
|
||||
@ -19,7 +19,7 @@ import javax.faces.view.facelets.TagConfig;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Joern Muehlencord (joern at muehlencord.de)
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
public class NotAuthenticatedTag extends AbstractAuthenticationTag {
|
||||
|
||||
|
||||
@ -19,7 +19,7 @@ import javax.faces.view.facelets.TagConfig;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Joern Muehlencord (joern at muehlencord.de)
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
public class UserTag extends AbstractAuthenticationTag {
|
||||
|
||||
|
||||
@ -37,7 +37,7 @@ import javax.faces.view.facelets.TagConfig;
|
||||
* is specified.
|
||||
* </div>
|
||||
*
|
||||
* @author Joern Muehlencord (joern at muehlencord.de)
|
||||
* @author Joern Muehlencord (joern@muehlencord.de)
|
||||
*/
|
||||
public class PrincipalTag extends AbstractTag {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user