Skip to content

Commit

Permalink
wrong code style template - missing correct header comment
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Feb 1, 2010
1 parent ddc04c9 commit be60f0a
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 9 deletions.
@@ -1,12 +1,24 @@
/**
* Copyright (C) 2005 Big Lots Inc.
/*
* SymmetricDS is an open source database synchronization solution.
*
* Copyright (C) Eric Long <erilong@users.sourceforge.net>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, see
* <http://www.gnu.org/licenses/>.
*/
package org.jumpmind.symmetric.common;

/**
* @author elong
*
*/
public class SecurityConstants {

public static final String PREFIX_ENC = "enc:";
Expand Down
@@ -1,5 +1,21 @@
/**
* Copyright (C) 2005 Big Lots Inc.
/*
* SymmetricDS is an open source database synchronization solution.
*
* Copyright (C) Dave Michels <dmichels2@users.sourceforge.net>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, see
* <http://www.gnu.org/licenses/>.
*/

package org.jumpmind.symmetric.security.inet;
Expand All @@ -8,7 +24,6 @@
* Provides lower-level address authorization to allow for raw address bytes to be authorized as opposed to requiring an
* <code>InetAddress</code> to be created for authorization checks.
*
* @author dmichels
*/
public interface IRawInetAddressAuthorizer
{
Expand Down

0 comments on commit be60f0a

Please sign in to comment.