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

hollow.model.Artist Maven / Gradle / Ivy

The newest version!
package hollow.model;

import com.netflix.hollow.core.write.objectmapper.HollowPrimaryKey;

@HollowPrimaryKey(fields = "name")
public class Artist {
    String name;

    String city;

    public Artist(String name, String city) {
        this.name = name;
        this.city = city;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy