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

org.javaswift.joss.headers.identity.XStoragePass Maven / Gradle / Ivy

There is a newer version: 0.9.17
Show newest version
package org.javaswift.joss.headers.identity;

import org.javaswift.joss.headers.SimpleHeader;

/**
 * User as part of a TEMPAUTH authentication. Contains the password. Passed in the headers as X-Storage-Pass
 */
public class XStoragePass extends SimpleHeader {

    public static String X_STORAGE_PASS = "X-Storage-Pass";

    public XStoragePass(String value) {
        super(value);
    }

    @Override
    public String getHeaderName() {
        return X_STORAGE_PASS;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy