Return-Path: X-Original-To: apmail-accumulo-commits-archive@www.apache.org Delivered-To: apmail-accumulo-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C5057DD2B for ; Tue, 14 May 2013 20:47:22 +0000 (UTC) Received: (qmail 18845 invoked by uid 500); 14 May 2013 20:47:22 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 18824 invoked by uid 500); 14 May 2013 20:47:22 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 18814 invoked by uid 99); 14 May 2013 20:47:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 May 2013 20:47:22 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 May 2013 20:47:21 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 699E023888E3; Tue, 14 May 2013 20:47:01 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1482579 - in /accumulo/branches/1.5: core/src/main/java/org/apache/accumulo/core/client/security/tokens/ server/src/main/java/org/apache/accumulo/server/client/security/ server/src/main/java/org/apache/accumulo/server/client/security/token/ Date: Tue, 14 May 2013 20:47:01 -0000 To: commits@accumulo.apache.org From: vines@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130514204701.699E023888E3@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: vines Date: Tue May 14 20:47:01 2013 New Revision: 1482579 URL: http://svn.apache.org/r1482579 Log: ACCUMULO-1415 - SystemToken moving to server Added: accumulo/branches/1.5/server/src/main/java/org/apache/accumulo/server/client/security/ accumulo/branches/1.5/server/src/main/java/org/apache/accumulo/server/client/security/token/ accumulo/branches/1.5/server/src/main/java/org/apache/accumulo/server/client/security/token/SystemToken.java (with props) Removed: accumulo/branches/1.5/core/src/main/java/org/apache/accumulo/core/client/security/tokens/SystemToken.java Added: accumulo/branches/1.5/server/src/main/java/org/apache/accumulo/server/client/security/token/SystemToken.java URL: http://svn.apache.org/viewvc/accumulo/branches/1.5/server/src/main/java/org/apache/accumulo/server/client/security/token/SystemToken.java?rev=1482579&view=auto ============================================================================== --- accumulo/branches/1.5/server/src/main/java/org/apache/accumulo/server/client/security/token/SystemToken.java (added) +++ accumulo/branches/1.5/server/src/main/java/org/apache/accumulo/server/client/security/token/SystemToken.java Tue May 14 20:47:01 2013 @@ -0,0 +1,30 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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 agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.apache.accumulo.server.client.security.token; + +import org.apache.accumulo.core.client.security.tokens.PasswordToken; + +/** + * @since 1.5.0 + */ + +public class SystemToken extends PasswordToken { + + public SystemToken(byte[] systemPassword) { + super(systemPassword); + } +} Propchange: accumulo/branches/1.5/server/src/main/java/org/apache/accumulo/server/client/security/token/SystemToken.java ------------------------------------------------------------------------------ svn:eol-style = native