Mass removal of all Tabs (Style Warnings)
[aaf/authz.git] / auth / auth-certman / src / main / java / org / onap / aaf / auth / cm / data / CertReq.java
index d960945..ad7f10e 100644 (file)
@@ -31,19 +31,19 @@ import org.onap.aaf.auth.cm.cert.CSRMeta;
 import org.onap.aaf.cadi.configure.CertException;
 
 public class CertReq {
-       // These cannot be null
-       public CA certAuthority;
-       public String mechid;
-       public List<String> fqdns;
-       // Notify
-       public List<String> emails;
-       
-       
-       // These may be null
-       public String sponsor;
-       public XMLGregorianCalendar start, end;
-       
-       public CSRMeta getCSRMeta() throws CertException {
-               return BCFactory.createCSRMeta(certAuthority, mechid, sponsor,fqdns);
-       }
+    // These cannot be null
+    public CA certAuthority;
+    public String mechid;
+    public List<String> fqdns;
+    // Notify
+    public List<String> emails;
+    
+    
+    // These may be null
+    public String sponsor;
+    public XMLGregorianCalendar start, end;
+    
+    public CSRMeta getCSRMeta() throws CertException {
+        return BCFactory.createCSRMeta(certAuthority, mechid, sponsor,fqdns);
+    }
 }