You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oltu.apache.org by si...@apache.org on 2013/09/19 13:35:30 UTC

svn commit: r1524701 - in /oltu/trunk/jose/jws/src: main/java/org/apache/oltu/jose/jws/signature/SymetricKey.java main/java/org/apache/oltu/jose/jws/signature/SymmetricKey.java test/java/org/apache/oltu/jose/jws/signature/TestSymetricKey.java

Author: simonetripodi
Date: Thu Sep 19 11:35:30 2013
New Revision: 1524701

URL: http://svn.apache.org/r1524701
Log:
trivial: typo

Added:
    oltu/trunk/jose/jws/src/main/java/org/apache/oltu/jose/jws/signature/SymmetricKey.java   (with props)
Removed:
    oltu/trunk/jose/jws/src/main/java/org/apache/oltu/jose/jws/signature/SymetricKey.java
Modified:
    oltu/trunk/jose/jws/src/test/java/org/apache/oltu/jose/jws/signature/TestSymetricKey.java

Added: oltu/trunk/jose/jws/src/main/java/org/apache/oltu/jose/jws/signature/SymmetricKey.java
URL: http://svn.apache.org/viewvc/oltu/trunk/jose/jws/src/main/java/org/apache/oltu/jose/jws/signature/SymmetricKey.java?rev=1524701&view=auto
==============================================================================
--- oltu/trunk/jose/jws/src/main/java/org/apache/oltu/jose/jws/signature/SymmetricKey.java (added)
+++ oltu/trunk/jose/jws/src/main/java/org/apache/oltu/jose/jws/signature/SymmetricKey.java Thu Sep 19 11:35:30 2013
@@ -0,0 +1,24 @@
+/*
+ * 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.oltu.jose.jws.signature;
+
+/**
+ * A key that marks can be used for both <i>sign</i> and <i>verify</i> operations.
+ */
+public interface SymmetricKey extends SigningKey, VerifyingKey {
+
+}

Propchange: oltu/trunk/jose/jws/src/main/java/org/apache/oltu/jose/jws/signature/SymmetricKey.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: oltu/trunk/jose/jws/src/main/java/org/apache/oltu/jose/jws/signature/SymmetricKey.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: oltu/trunk/jose/jws/src/main/java/org/apache/oltu/jose/jws/signature/SymmetricKey.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: oltu/trunk/jose/jws/src/test/java/org/apache/oltu/jose/jws/signature/TestSymetricKey.java
URL: http://svn.apache.org/viewvc/oltu/trunk/jose/jws/src/test/java/org/apache/oltu/jose/jws/signature/TestSymetricKey.java?rev=1524701&r1=1524700&r2=1524701&view=diff
==============================================================================
--- oltu/trunk/jose/jws/src/test/java/org/apache/oltu/jose/jws/signature/TestSymetricKey.java (original)
+++ oltu/trunk/jose/jws/src/test/java/org/apache/oltu/jose/jws/signature/TestSymetricKey.java Thu Sep 19 11:35:30 2013
@@ -16,7 +16,7 @@
  */
 package org.apache.oltu.jose.jws.signature;
 
-final class TestSymetricKey implements SymetricKey {
+final class TestSymetricKey implements SymmetricKey {
 
     private final String value;