All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xipki.ca.gateway.acme.msg.AuthzResponse Maven / Gradle / Ivy

There is a newer version: 6.5.1
Show newest version
// Copyright (c) 2013-2023 xipki. All rights reserved.
// License Apache License 2.0

package org.xipki.ca.gateway.acme.msg;

import org.xipki.ca.gateway.acme.type.AuthzStatus;
import org.xipki.ca.gateway.acme.type.Identifier;

import java.util.List;

/**
 *
 * @author Lijun Liao (xipki)
 */
public class AuthzResponse {

  private AuthzStatus status;
  private String expires;
  private Identifier identifier;

  private List challenges;

  public AuthzStatus getStatus() {
    return status;
  }

  public void setStatus(AuthzStatus status) {
    this.status = status;
  }

  public String getExpires() {
    return expires;
  }

  public void setExpires(String expires) {
    this.expires = expires;
  }

  public Identifier getIdentifier() {
    return identifier;
  }

  public void setIdentifier(Identifier identifier) {
    this.identifier = identifier;
  }

  public List getChallenges() {
    return challenges;
  }

  public void setChallenges(List challenges) {
    this.challenges = challenges;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy