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

com.atlassian.stash.rest.client.api.entity.UserSshKey Maven / Gradle / Ivy

The newest version!
package com.atlassian.stash.rest.client.api.entity;

/**
 * SSH public key for user
 */
public class UserSshKey extends SshKey {

    public UserSshKey(final long id, final String text, final String label) {
        super(text, label, id);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy