5
0
mirror of https://github.com/apache/sqoop.git synced 2025-05-19 02:10:54 +08:00

SQOOP-2249: Sqoop2: ErrorCodes: Move SecurityError to core module

(Jarek Jarcec Cecho via Abraham Elmahrek)
This commit is contained in:
Abraham Elmahrek 2015-03-23 15:23:34 -07:00
parent 205cf2c02a
commit 587f50d184
6 changed files with 5 additions and 6 deletions

View File

@ -15,7 +15,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.sqoop.error.code;
package org.apache.sqoop.security;
import org.apache.sqoop.common.ErrorCode;

View File

@ -18,7 +18,6 @@
package org.apache.sqoop.security;
import org.apache.sqoop.common.SqoopException;
import org.apache.sqoop.error.code.SecurityError;
import org.apache.sqoop.utils.ClassUtils;
/**

View File

@ -26,7 +26,7 @@
import org.apache.sqoop.core.SqoopConfiguration;
import org.apache.sqoop.security.AuthenticationHandler;
import org.apache.sqoop.security.SecurityConstants;
import org.apache.sqoop.error.code.SecurityError;
import org.apache.sqoop.security.SecurityError;
import java.io.IOException;

View File

@ -22,7 +22,7 @@
import org.apache.hadoop.security.token.delegation.web.HttpUserGroupInformation;
import org.apache.sqoop.common.SqoopException;
import org.apache.sqoop.security.AuthenticationProvider;
import org.apache.sqoop.error.code.SecurityError;
import org.apache.sqoop.security.SecurityError;
public class DefaultAuthenticationProvider extends AuthenticationProvider {

View File

@ -29,7 +29,7 @@
import org.apache.sqoop.common.SqoopException;
import org.apache.sqoop.core.SqoopConfiguration;
import org.apache.sqoop.security.SecurityConstants;
import org.apache.sqoop.error.code.SecurityError;
import org.apache.sqoop.security.SecurityError;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;

View File

@ -28,7 +28,7 @@
import org.apache.sqoop.model.MRole;
import org.apache.sqoop.security.AuthorizationHandler;
import org.apache.sqoop.security.AuthorizationManager;
import org.apache.sqoop.error.code.SecurityError;
import org.apache.sqoop.security.SecurityError;
import org.apache.sqoop.server.RequestContext;
import org.apache.sqoop.server.RequestHandler;
import org.json.simple.JSONObject;