diff --git a/src/main/java/cl/transbank/patpass/PatpassComercio.java b/src/main/java/cl/transbank/patpass/PatpassComercio.java index d7ec70a..84279b6 100644 --- a/src/main/java/cl/transbank/patpass/PatpassComercio.java +++ b/src/main/java/cl/transbank/patpass/PatpassComercio.java @@ -21,30 +21,30 @@ public static class Inscription extends PatpassComercioInscription { public Inscription(Options options) { super(options); } - } - /** - * Creates and returns an instance of `Inscription` configured for the integration environment. - * - * @param commerceCode The commerce code. - * @param apiKey The API key used for authentication. - * @return A new instance of `Inscription` configured for the test environment (IntegrationType.TEST). - */ - public static Inscription buildForIntegration(String commerceCode, String apiKey) - { - return new Inscription(new PatpassOptions(commerceCode, apiKey, IntegrationType.TEST)); - } + /** + * Creates and returns an instance of `Inscription` configured for the integration environment. + * + * @param commerceCode The commerce code. + * @param apiKey The API key used for authentication. + * @return A new instance of `Inscription` configured for the test environment (IntegrationType.TEST). + */ + public static Inscription buildForIntegration(String commerceCode, String apiKey) + { + return new Inscription(new PatpassOptions(commerceCode, apiKey, IntegrationType.TEST)); + } - /** - * Creates and returns an instance of `Inscription` configured for the production environment. - * - * @param commerceCode The commerce code. - * @param apiKey The API key used for authentication. - * @return A new instance of `Inscription` configured for the production environment (IntegrationType.LIVE). - */ - public static Inscription buildForProduction(String commerceCode, String apiKey) - { - return new Inscription(new PatpassOptions(commerceCode, apiKey, IntegrationType.LIVE)); + /** + * Creates and returns an instance of `Inscription` configured for the production environment. + * + * @param commerceCode The commerce code. + * @param apiKey The API key used for authentication. + * @return A new instance of `Inscription` configured for the production environment (IntegrationType.LIVE). + */ + public static Inscription buildForProduction(String commerceCode, String apiKey) + { + return new Inscription(new PatpassOptions(commerceCode, apiKey, IntegrationType.LIVE)); + } } }