1 /* 2 * Copyright (C) 2020 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.libraries.rcs.simpleclient.protocol.msrp; 18 19 import com.google.auto.value.AutoValue; 20 21 /** 22 * Single header in MSRP chunk (From-Path, To-Path, ...) 23 */ 24 @AutoValue 25 public abstract class MsrpChunkHeader { 26 newBuilder()27 public static Builder newBuilder() { 28 return new AutoValue_MsrpChunkHeader.Builder(); 29 } 30 name()31 public abstract String name(); 32 value()33 public abstract String value(); 34 35 /** 36 * Builder for new MSRP header. 37 */ 38 @AutoValue.Builder 39 public static abstract class Builder { 40 name(String name)41 public abstract Builder name(String name); 42 value(String value)43 public abstract Builder value(String value); 44 build()45 public abstract MsrpChunkHeader build(); 46 } 47 } 48