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

org.shredzone.acme4j.AcmeResource Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
/*
 * acme4j - Java ACME client
 *
 * Copyright (C) 2016 Richard "Shred" Körber
 *   http://acme4j.shredzone.org
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 */
package org.shredzone.acme4j;

import java.io.Serializable;
import java.net.URL;
import java.util.Objects;

import edu.umd.cs.findbugs.annotations.Nullable;

/**
 * A generic ACME resource.
 */
public abstract class AcmeResource implements Serializable {
    private static final long serialVersionUID = -7930580802257379731L;

    private transient @Nullable Login login;
    private final URL location;

    /**
     * Create a new {@link AcmeResource}.
     *
     * @param login
     *            {@link Login} the resource is bound with
     * @param location
     *            Location {@link URL} of this resource
     */
    protected AcmeResource(Login login, URL location) {
        this.location = Objects.requireNonNull(location, "location");
        rebind(login);
    }

    /**
     * Gets the {@link Login} this resource is bound with.
     */
    protected Login getLogin() {
        if (login == null) {
            throw new IllegalStateException("Use rebind() for binding this object to a login.");
        }
        return login;
    }

    /**
     * Gets the {@link Session} this resource is bound with.
     */
    protected Session getSession() {
        return getLogin().getSession();
    }

    /**
     * Rebinds this resource to a {@link Login}.
     * 

* Logins are not serialized, because they contain volatile session data and also a * private key. After de-serialization of an {@link AcmeResource}, use this method to * rebind it to a {@link Login}. * * @param login * {@link Login} to bind this resource to */ public void rebind(Login login) { if (this.login != null) { throw new IllegalStateException("Resource is already bound to a login"); } this.login = Objects.requireNonNull(login, "login"); } /** * Gets the resource's location. */ public URL getLocation() { return location; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy