Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / auth / auth-oauth / src / main / java / org / onap / aaf / auth / oauth / service / OCreds.java
index becb746..af15d4c 100644 (file)
 package org.onap.aaf.auth.oauth.service;
 
 public class OCreds {
-       public final String client_id, username;
-       public final byte[] client_secret, password;
-       public OCreds(String client_id, String client_secret, String username, String password) {
-               this.client_id = client_id;
-               this.client_secret = client_secret==null?null:client_secret.getBytes();
-               this.username = username;
-               this.password = password==null?null:password.getBytes();
-       }
+    public final String client_id, username;
+    public final byte[] client_secret, password;
+    public OCreds(String client_id, String client_secret, String username, String password) {
+        this.client_id = client_id;
+        this.client_secret = client_secret==null?null:client_secret.getBytes();
+        this.username = username;
+        this.password = password==null?null:password.getBytes();
+    }
 }