void setClusterView()

in src/main/java/org/apache/sling/discovery/commons/providers/DefaultInstanceDescription.java [126:134]


    void setClusterView(ClusterView clusterView) {
        if (this.clusterView != null) {
            throw new IllegalStateException("can only set clusterView once");
        }
        if (clusterView == null) {
            throw new IllegalArgumentException("clusterView must not be null");
        }
        this.clusterView = clusterView;
    }