Line data Source code
1 : // Copyright (C) 2018 The Android Open Source Project 2 : // 3 : // Licensed under the Apache License, Version 2.0 (the "License"); 4 : // you may not use this file except in compliance with the License. 5 : // You may obtain a copy of the License at 6 : // 7 : // http://www.apache.org/licenses/LICENSE-2.0 8 : // 9 : // Unless required by applicable law or agreed to in writing, software 10 : // distributed under the License is distributed on an "AS IS" BASIS, 11 : // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 : // See the License for the specific language governing permissions and 13 : // limitations under the License. 14 : 15 : package com.google.gerrit.entities.converter; 16 : 17 : import com.google.errorprone.annotations.Immutable; 18 : import com.google.gerrit.entities.BranchNameKey; 19 : import com.google.gerrit.entities.Project; 20 : import com.google.gerrit.proto.Entities; 21 : import com.google.protobuf.Parser; 22 : 23 104 : @Immutable 24 104 : public enum BranchNameKeyProtoConverter 25 : implements ProtoConverter<Entities.Branch_NameKey, BranchNameKey> { 26 104 : INSTANCE; 27 : 28 104 : private final ProtoConverter<Entities.Project_NameKey, Project.NameKey> projectNameConverter = 29 : ProjectNameKeyProtoConverter.INSTANCE; 30 : 31 : @Override 32 : public Entities.Branch_NameKey toProto(BranchNameKey nameKey) { 33 104 : return Entities.Branch_NameKey.newBuilder() 34 104 : .setProject(projectNameConverter.toProto(nameKey.project())) 35 104 : .setBranch(nameKey.branch()) 36 104 : .build(); 37 : } 38 : 39 : @Override 40 : public BranchNameKey fromProto(Entities.Branch_NameKey proto) { 41 101 : return BranchNameKey.create( 42 101 : projectNameConverter.fromProto(proto.getProject()), proto.getBranch()); 43 : } 44 : 45 : @Override 46 : public Parser<Entities.Branch_NameKey> getParser() { 47 0 : return Entities.Branch_NameKey.parser(); 48 : } 49 : }