Added the missing @Deprecated annotation 97/19497/1
authorrama-huawei <rama.subba.reddy.s@huawei.com>
Wed, 18 Oct 2017 09:17:26 +0000 (14:47 +0530)
committerrama-huawei <rama.subba.reddy.s@huawei.com>
Wed, 18 Oct 2017 09:18:47 +0000 (14:48 +0530)
Issue-id: SO-235

Change-Id: Id3397a8efdecd94b57e761551ced94d6c6a49cb0
Signed-off-by: rama-huawei <rama.subba.reddy.s@huawei.com>
nova-client/src/main/java/com/woorea/openstack/nova/api/extensions/SecurityGroupsExtension.java
nova-model/src/main/java/com/woorea/openstack/nova/model/KeyPairs.java
nova-model/src/main/java/com/woorea/openstack/nova/model/SecurityGroupRuleForCreate.java
nova-model/src/main/java/com/woorea/openstack/nova/model/Server.java
nova-model/src/main/java/com/woorea/openstack/nova/model/ServerAction.java

index 2bfa748..ebfea43 100644 (file)
@@ -59,6 +59,7 @@ public class SecurityGroupsExtension {
                 * @deprecated
                 * @param id
                 */
+               @Deprecated
                public Show(Integer id) {
                        super(CLIENT, HttpMethod.GET, new StringBuilder("/os-security-groups/").append(id).toString(), null, SecurityGroup.class);
                }
@@ -75,6 +76,7 @@ public class SecurityGroupsExtension {
                 * @param id
                 * @deprecated
                 */
+               @Deprecated
                public Delete(Integer id) {
                        super(CLIENT, HttpMethod.DELETE, new StringBuilder("/os-security-groups/").append(String.valueOf(id)).toString(), null, Void.class);
                }
@@ -101,6 +103,7 @@ public class SecurityGroupsExtension {
                 * @param id
                 * @deprecated
                 */
+               @Deprecated
                public DeleteRule(Integer id) {
                        super(CLIENT, HttpMethod.DELETE, new StringBuilder("/os-security-group-rules/").append(String.valueOf(id)).toString(), null, Void.class);
                }
@@ -148,6 +151,7 @@ public class SecurityGroupsExtension {
         * @return
         * @deprecated Use {@link #createSecurityGroupRule(String, String, Integer, Integer, String)}
         */
+       @Deprecated
        public CreateRule createSecurityGroupRule(
                        Integer parentSecurityGroupId, String ipProtocol, Integer fromPort,
                        Integer toPort, String cidr) {
@@ -165,6 +169,7 @@ public class SecurityGroupsExtension {
         * @return
         * @deprecated Use {@link #createSecurityGroupRule(String, String, String, Integer, Integer)}
         */
+       @Deprecated
        public CreateRule createSecurityGroupRule(
                        Integer parentSecurityGroupId, String ipProtocol, Integer fromPort,
                        Integer toPort, Integer sourceGroupId) {
index 0398bf3..db24f8d 100644 (file)
@@ -39,11 +39,11 @@ public class KeyPairs implements Iterable<KeyPair>, Serializable {
         * @return the list
         */
        public List<KeyPair> getList() {
-               List<KeyPair> list = new ArrayList<KeyPair>();
+               List<KeyPair> keyPairList = new ArrayList<>();
                for(KeyPairWrapper wrapper : this.list) {
-                       list.add(wrapper.keypair);
+                       keyPairList.add(wrapper.keypair);
                }
-               return list;
+               return keyPairList;
        }
        
        @Override
index d5ff7b3..d1a3ec0 100644 (file)
@@ -111,6 +111,7 @@ public class SecurityGroupRuleForCreate implements Serializable {
         * @param parentGroupId the parentGroupId to set
         * @deprecated Use {@link #setParentGroupId(String)}
         */
+       @Deprecated
        public void setParentGroupId(Integer parentGroupId) {
                this.parentGroupId = String.valueOf(parentGroupId);
        }
@@ -189,6 +190,7 @@ public class SecurityGroupRuleForCreate implements Serializable {
         * @param groupId the groupId to set
         * @deprecated Use {@link #setGroupId(String)}
         */
+       @Deprecated
        public void setGroupId(Integer groupId) {
                this.groupId = String.valueOf(groupId);
        }
index 938fc2b..20ab039 100644 (file)
@@ -102,7 +102,7 @@ public class Server implements Serializable {
                        }
                }
 
-               private Map<String, List<Address>> addresses = new HashMap<String, List<Address>>();
+               private Map<String, List<Address>> addresses = new HashMap<>();
 
                @JsonAnySetter
                public void add(String key, List<Address> value) {
index 9ccc43b..80793a7 100644 (file)
@@ -91,9 +91,9 @@ public interface ServerAction extends Serializable {
                
                private String accessIPv6;
                
-               private Map<String, String> metadata = new HashMap<String, String>();
+               private Map<String, String> metadata = new HashMap<>();
                
-               private List<PersonalityFile> personality = new ArrayList<PersonalityFile>();
+               private List<PersonalityFile> personality = new ArrayList<>();
                
                @JsonProperty("OS-DCF:diskConfig")
                private String diskConfig;