This commit is contained in:
Sebastian Sdorra
2014-07-20 14:28:13 +02:00
parent 26746a2f77
commit cd1a73ef61
2 changed files with 21 additions and 9 deletions

View File

@@ -49,6 +49,7 @@ import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType; import javax.ws.rs.core.MediaType;
/** /**
* Rest resource to encrypt values.
* *
* @author Sebastian Sdorra * @author Sebastian Sdorra
* @since 1.41 * @since 1.41
@@ -58,12 +59,17 @@ public class CipherResource
{ {
/** /**
* Method description * Encrypts the request body and returns an encrypted string. This method can
* only executed with administration privileges.<br />
* <br />
* <ul>
* <li>200 success</li>
* <li>500 internal server error</li>
* </ul>
* *
* @param value value to encrypt
* *
* @param value * @return unique key
*
* @return
*/ */
@POST @POST
@Path("encrypt") @Path("encrypt")

View File

@@ -48,6 +48,7 @@ import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType; import javax.ws.rs.core.MediaType;
/** /**
* Rest resource to generate unique keys.
* *
* @author Sebastian Sdorra * @author Sebastian Sdorra
* @since 1.41 * @since 1.41
@@ -57,10 +58,10 @@ public class KeyResource
{ {
/** /**
* Constructs ... * Constructs a new KeyResource.
* *
* *
* @param keyGenerator * @param keyGenerator key generator
*/ */
@Inject @Inject
public KeyResource(KeyGenerator keyGenerator) public KeyResource(KeyGenerator keyGenerator)
@@ -71,10 +72,15 @@ public class KeyResource
//~--- methods -------------------------------------------------------------- //~--- methods --------------------------------------------------------------
/** /**
* Method description * Generates a unique key. This method can only executed with administration
* privileges.<br />
* <br />
* <ul>
* <li>200 success</li>
* <li>500 internal server error</li>
* </ul>
* *
* * @return unique key
* @return
*/ */
@GET @GET
@Produces(MediaType.TEXT_PLAIN) @Produces(MediaType.TEXT_PLAIN)