CommonLibrary(util/rest-client) code upload.
[vfc/nfvo/wfengine.git] / CommonLibrary / common-util / src / main / java / org / openo / baseservice / encrypt / cbb / impl / AesCipherFactory.java
1 /*
2  * Copyright (c) 2016, Huawei Technologies Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.openo.baseservice.encrypt.cbb.impl;
17
18 import org.openo.baseservice.encrypt.cbb.inf.AbstractCipher;
19 import org.openo.baseservice.encrypt.cbb.inf.AbstractCipherFactory;
20
21 /**
22  * Factory class to create CipherManager instances.<br/>
23  * <p>
24  * </p>
25  * 
26  * @author
27  * @version SDNO 0.5 03-Jun-2016
28  */
29 public class AesCipherFactory implements AbstractCipherFactory {
30
31     /**
32      * Creates new CipherManager instance.<br/>
33      * 
34      * @return new cipher manager instance.
35      * @since SDNO 0.5
36      */
37     @Override
38     public AbstractCipher createCipherManager() {
39         return new AesCipher();
40     }
41
42     /**
43      * Creates new CipherManager instance.<br/>
44      * 
45      * @param key new cipher manager instance.
46      * @return
47      * @since SDNO 0.5
48      */
49     @Override
50     public AbstractCipher createCipherManager(final String key) {
51         return new AesCipher(key);
52     }
53
54 }