Sophie

Sophie

distrib > Mageia > 6 > x86_64 > by-pkgid > ae6590e1df5b5064511f8b690c1300c5 > files > 122

lib64dbjava5.3-5.3.28-10.1.mga6.x86_64.rpm

/*-
 * See the file LICENSE for redistribution information.
 *
 * Copyright (c) 1997, 2013 Oracle and/or its affiliates.  All rights reserved.
 *
 * $Id$
 */

package db.repquote;

import com.sleepycat.db.ReplicationHostAddress;

public class RepRemoteHost{
    private ReplicationHostAddress addr;
    private boolean isPeer;

    public RepRemoteHost(ReplicationHostAddress remoteAddr, boolean hostIsPeer){
        addr = remoteAddr;
        isPeer = hostIsPeer;
    }

    public ReplicationHostAddress getAddress(){
        return addr;
    }

    public boolean isPeer(){
        return isPeer;
    }
}