@Override
public boolean isOwnContact () {
- throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
+ throw new UnsupportedOperationException("Not supported yet."); //NOI18N
}
@Override
@Override
public void show (final Client client) {
- throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
+ throw new UnsupportedOperationException("Not supported yet."); //NOI18N
}
@Override
@Override
public void init (final FilterConfig filterConfig) throws ServletException {
// Trace message
- this.getLogger().trace(MessageFormat.format("filterConfig={0} - CALLED!", filterConfig));
+ this.getLogger().trace(MessageFormat.format("filterConfig={0} - CALLED!", filterConfig)); //NOI18N
// Set config instance
this.setConfig(filterConfig);
// Trace message
- this.getLogger().trace("EXIT!");
+ this.getLogger().trace("EXIT!"); //NOI18N
}
/**
@Override
public void doFilter (final ServletRequest request, final ServletResponse response, final FilterChain chain) throws IOException, ServletException {
// Trace message
- this.getLogger().trace(MessageFormat.format("request={0},response={1},chain={2} - CALLED!", request, response, chain));
+ this.getLogger().trace(MessageFormat.format("request={0},response={1},chain={2} - CALLED!", request, response, chain)); //NOI18N
// Call super method
chain.doFilter(request, response);
response.setCharacterEncoding("UTF-8"); //NOI18N
// Trace message
- this.getLogger().trace("EXIT!");
+ this.getLogger().trace("EXIT!"); //NOI18N
}
}