lnrpc.ChangePasswordRequest.scala Maven / Gradle / Ivy
The newest version!
// Generated by the Scala Plugin for the Protocol Buffer Compiler.
// Do not edit!
//
// Protofile syntax: PROTO3
package lnrpc
import org.bitcoins.lnd.rpc.LndUtils._
/** @param currentPassword
*
* current_password should be the current valid passphrase used to unlock the
* daemon. When using REST, this field must be encoded as base64.
* @param newPassword
*
* new_password should be the new passphrase that will be needed to unlock the
* daemon. When using REST, this field must be encoded as base64.
* @param statelessInit
*
* stateless_init is an optional argument instructing the daemon NOT to create
* any *.macaroon files in its filesystem. If this parameter is set, then the
* admin macaroon returned in the response MUST be stored by the caller of the
* RPC as otherwise all access to the daemon will be lost!
* @param newMacaroonRootKey
*
* new_macaroon_root_key is an optional argument instructing the daemon to
* rotate the macaroon root key when set to true. This will invalidate all
* previously generated macaroons.
*/
@SerialVersionUID(0L)
final case class ChangePasswordRequest(
currentPassword: _root_.com.google.protobuf.ByteString = _root_.com.google.protobuf.ByteString.EMPTY,
newPassword: _root_.com.google.protobuf.ByteString = _root_.com.google.protobuf.ByteString.EMPTY,
statelessInit: _root_.scala.Boolean = false,
newMacaroonRootKey: _root_.scala.Boolean = false,
unknownFields: _root_.scalapb.UnknownFieldSet = _root_.scalapb.UnknownFieldSet.empty
) extends scalapb.GeneratedMessage with scalapb.lenses.Updatable[ChangePasswordRequest] {
@transient
private[this] var __serializedSizeMemoized: _root_.scala.Int = 0
private[this] def __computeSerializedSize(): _root_.scala.Int = {
var __size = 0
{
val __value = currentPassword
if (!__value.isEmpty) {
__size += _root_.com.google.protobuf.CodedOutputStream.computeBytesSize(1, __value)
}
};
{
val __value = newPassword
if (!__value.isEmpty) {
__size += _root_.com.google.protobuf.CodedOutputStream.computeBytesSize(2, __value)
}
};
{
val __value = statelessInit
if (__value != false) {
__size += _root_.com.google.protobuf.CodedOutputStream.computeBoolSize(3, __value)
}
};
{
val __value = newMacaroonRootKey
if (__value != false) {
__size += _root_.com.google.protobuf.CodedOutputStream.computeBoolSize(4, __value)
}
};
__size += unknownFields.serializedSize
__size
}
override def serializedSize: _root_.scala.Int = {
var __size = __serializedSizeMemoized
if (__size == 0) {
__size = __computeSerializedSize() + 1
__serializedSizeMemoized = __size
}
__size - 1
}
def writeTo(`_output__`: _root_.com.google.protobuf.CodedOutputStream): _root_.scala.Unit = {
{
val __v = currentPassword
if (!__v.isEmpty) {
_output__.writeBytes(1, __v)
}
};
{
val __v = newPassword
if (!__v.isEmpty) {
_output__.writeBytes(2, __v)
}
};
{
val __v = statelessInit
if (__v != false) {
_output__.writeBool(3, __v)
}
};
{
val __v = newMacaroonRootKey
if (__v != false) {
_output__.writeBool(4, __v)
}
};
unknownFields.writeTo(_output__)
}
def withCurrentPassword(__v: _root_.com.google.protobuf.ByteString): ChangePasswordRequest = copy(currentPassword = __v)
def withNewPassword(__v: _root_.com.google.protobuf.ByteString): ChangePasswordRequest = copy(newPassword = __v)
def withStatelessInit(__v: _root_.scala.Boolean): ChangePasswordRequest = copy(statelessInit = __v)
def withNewMacaroonRootKey(__v: _root_.scala.Boolean): ChangePasswordRequest = copy(newMacaroonRootKey = __v)
def withUnknownFields(__v: _root_.scalapb.UnknownFieldSet) = copy(unknownFields = __v)
def discardUnknownFields = copy(unknownFields = _root_.scalapb.UnknownFieldSet.empty)
def getFieldByNumber(__fieldNumber: _root_.scala.Int): _root_.scala.Any = {
(__fieldNumber: @_root_.scala.unchecked) match {
case 1 => {
val __t = currentPassword
if (__t != _root_.com.google.protobuf.ByteString.EMPTY) __t else null
}
case 2 => {
val __t = newPassword
if (__t != _root_.com.google.protobuf.ByteString.EMPTY) __t else null
}
case 3 => {
val __t = statelessInit
if (__t != false) __t else null
}
case 4 => {
val __t = newMacaroonRootKey
if (__t != false) __t else null
}
}
}
def getField(__field: _root_.scalapb.descriptors.FieldDescriptor): _root_.scalapb.descriptors.PValue = {
_root_.scala.Predef.require(__field.containingMessage eq companion.scalaDescriptor)
(__field.number: @_root_.scala.unchecked) match {
case 1 => _root_.scalapb.descriptors.PByteString(currentPassword)
case 2 => _root_.scalapb.descriptors.PByteString(newPassword)
case 3 => _root_.scalapb.descriptors.PBoolean(statelessInit)
case 4 => _root_.scalapb.descriptors.PBoolean(newMacaroonRootKey)
}
}
def toProtoString: _root_.scala.Predef.String = _root_.scalapb.TextFormat.printToUnicodeString(this)
def companion: lnrpc.ChangePasswordRequest.type = lnrpc.ChangePasswordRequest
// @@protoc_insertion_point(GeneratedMessage[lnrpc.ChangePasswordRequest])
}
object ChangePasswordRequest extends scalapb.GeneratedMessageCompanion[lnrpc.ChangePasswordRequest] {
implicit def messageCompanion: scalapb.GeneratedMessageCompanion[lnrpc.ChangePasswordRequest] = this
def parseFrom(`_input__`: _root_.com.google.protobuf.CodedInputStream): lnrpc.ChangePasswordRequest = {
var __currentPassword: _root_.com.google.protobuf.ByteString = _root_.com.google.protobuf.ByteString.EMPTY
var __newPassword: _root_.com.google.protobuf.ByteString = _root_.com.google.protobuf.ByteString.EMPTY
var __statelessInit: _root_.scala.Boolean = false
var __newMacaroonRootKey: _root_.scala.Boolean = false
var `_unknownFields__`: _root_.scalapb.UnknownFieldSet.Builder = null
var _done__ = false
while (!_done__) {
val _tag__ = _input__.readTag()
_tag__ match {
case 0 => _done__ = true
case 10 =>
__currentPassword = _input__.readBytes()
case 18 =>
__newPassword = _input__.readBytes()
case 24 =>
__statelessInit = _input__.readBool()
case 32 =>
__newMacaroonRootKey = _input__.readBool()
case tag =>
if (_unknownFields__ == null) {
_unknownFields__ = new _root_.scalapb.UnknownFieldSet.Builder()
}
_unknownFields__.parseField(tag, _input__)
}
}
lnrpc.ChangePasswordRequest(
currentPassword = __currentPassword,
newPassword = __newPassword,
statelessInit = __statelessInit,
newMacaroonRootKey = __newMacaroonRootKey,
unknownFields = if (_unknownFields__ == null) _root_.scalapb.UnknownFieldSet.empty else _unknownFields__.result()
)
}
implicit def messageReads: _root_.scalapb.descriptors.Reads[lnrpc.ChangePasswordRequest] = _root_.scalapb.descriptors.Reads{
case _root_.scalapb.descriptors.PMessage(__fieldsMap) =>
_root_.scala.Predef.require(__fieldsMap.keys.forall(_.containingMessage eq scalaDescriptor), "FieldDescriptor does not match message type.")
lnrpc.ChangePasswordRequest(
currentPassword = __fieldsMap.get(scalaDescriptor.findFieldByNumber(1).get).map(_.as[_root_.com.google.protobuf.ByteString]).getOrElse(_root_.com.google.protobuf.ByteString.EMPTY),
newPassword = __fieldsMap.get(scalaDescriptor.findFieldByNumber(2).get).map(_.as[_root_.com.google.protobuf.ByteString]).getOrElse(_root_.com.google.protobuf.ByteString.EMPTY),
statelessInit = __fieldsMap.get(scalaDescriptor.findFieldByNumber(3).get).map(_.as[_root_.scala.Boolean]).getOrElse(false),
newMacaroonRootKey = __fieldsMap.get(scalaDescriptor.findFieldByNumber(4).get).map(_.as[_root_.scala.Boolean]).getOrElse(false)
)
case _ => throw new RuntimeException("Expected PMessage")
}
def javaDescriptor: _root_.com.google.protobuf.Descriptors.Descriptor = WalletunlockerProto.javaDescriptor.getMessageTypes().get(8)
def scalaDescriptor: _root_.scalapb.descriptors.Descriptor = WalletunlockerProto.scalaDescriptor.messages(8)
def messageCompanionForFieldNumber(__number: _root_.scala.Int): _root_.scalapb.GeneratedMessageCompanion[_] = throw new MatchError(__number)
lazy val nestedMessagesCompanions: Seq[_root_.scalapb.GeneratedMessageCompanion[_ <: _root_.scalapb.GeneratedMessage]] = Seq.empty
def enumCompanionForFieldNumber(__fieldNumber: _root_.scala.Int): _root_.scalapb.GeneratedEnumCompanion[_] = throw new MatchError(__fieldNumber)
lazy val defaultInstance = lnrpc.ChangePasswordRequest(
currentPassword = _root_.com.google.protobuf.ByteString.EMPTY,
newPassword = _root_.com.google.protobuf.ByteString.EMPTY,
statelessInit = false,
newMacaroonRootKey = false
)
implicit class ChangePasswordRequestLens[UpperPB](_l: _root_.scalapb.lenses.Lens[UpperPB, lnrpc.ChangePasswordRequest]) extends _root_.scalapb.lenses.ObjectLens[UpperPB, lnrpc.ChangePasswordRequest](_l) {
def currentPassword: _root_.scalapb.lenses.Lens[UpperPB, _root_.com.google.protobuf.ByteString] = field(_.currentPassword)((c_, f_) => c_.copy(currentPassword = f_))
def newPassword: _root_.scalapb.lenses.Lens[UpperPB, _root_.com.google.protobuf.ByteString] = field(_.newPassword)((c_, f_) => c_.copy(newPassword = f_))
def statelessInit: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Boolean] = field(_.statelessInit)((c_, f_) => c_.copy(statelessInit = f_))
def newMacaroonRootKey: _root_.scalapb.lenses.Lens[UpperPB, _root_.scala.Boolean] = field(_.newMacaroonRootKey)((c_, f_) => c_.copy(newMacaroonRootKey = f_))
}
final val CURRENT_PASSWORD_FIELD_NUMBER = 1
final val NEW_PASSWORD_FIELD_NUMBER = 2
final val STATELESS_INIT_FIELD_NUMBER = 3
final val NEW_MACAROON_ROOT_KEY_FIELD_NUMBER = 4
def of(
currentPassword: _root_.com.google.protobuf.ByteString,
newPassword: _root_.com.google.protobuf.ByteString,
statelessInit: _root_.scala.Boolean,
newMacaroonRootKey: _root_.scala.Boolean
): _root_.lnrpc.ChangePasswordRequest = _root_.lnrpc.ChangePasswordRequest(
currentPassword,
newPassword,
statelessInit,
newMacaroonRootKey
)
// @@protoc_insertion_point(GeneratedMessageCompanion[lnrpc.ChangePasswordRequest])
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy