1 /* 2 * Copyright 2021 Google LLC 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 * https://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 package com.google.android.enterprise.connectedapps.processor.containers; 17 18 import com.google.android.enterprise.connectedapps.annotations.CrossProfile; 19 import com.google.auto.value.AutoValue; 20 import com.google.common.collect.ImmutableCollection; 21 import javax.lang.model.element.TypeElement; 22 23 /** Wrapper around information contained in an annotation of type {@link CrossProfile}. */ 24 @AutoValue 25 public abstract class CrossProfileAnnotationInfo { 26 27 public static final String DEFAULT_CONNECTOR_NAME = 28 "com.google.android.enterprise.connectedapps.annotations.CrossProfile"; 29 connectorClass()30 public abstract TypeElement connectorClass(); 31 parcelableWrapperClasses()32 public abstract ImmutableCollection<TypeElement> parcelableWrapperClasses(); 33 futureWrapperClasses()34 public abstract ImmutableCollection<TypeElement> futureWrapperClasses(); 35 additionalUsedTypes()36 public abstract ImmutableCollection<TypeElement> additionalUsedTypes(); 37 isStatic()38 public abstract boolean isStatic(); 39 connectorIsDefault()40 public boolean connectorIsDefault() { 41 return connectorClass().asType().toString().equals(DEFAULT_CONNECTOR_NAME); 42 } 43 builder()44 public static Builder builder() { 45 return new AutoValue_CrossProfileAnnotationInfo.Builder(); 46 } 47 48 @AutoValue.Builder 49 public abstract static class Builder { 50 setConnectorClass(TypeElement value)51 public abstract Builder setConnectorClass(TypeElement value); 52 setParcelableWrapperClasses(ImmutableCollection<TypeElement> value)53 public abstract Builder setParcelableWrapperClasses(ImmutableCollection<TypeElement> value); 54 setFutureWrapperClasses(ImmutableCollection<TypeElement> value)55 public abstract Builder setFutureWrapperClasses(ImmutableCollection<TypeElement> value); 56 setAdditionalUsedTypes(ImmutableCollection<TypeElement> value)57 public abstract Builder setAdditionalUsedTypes(ImmutableCollection<TypeElement> value); 58 setIsStatic(boolean value)59 public abstract Builder setIsStatic(boolean value); 60 build()61 public abstract CrossProfileAnnotationInfo build(); 62 } 63 } 64