net.sourceforge.msscodefactory.cfinternet.v2_0.CFInternet.CFInternetSecUserHPKey.java Source code

Java tutorial

Introduction

Here is the source code for net.sourceforge.msscodefactory.cfinternet.v2_0.CFInternet.CFInternetSecUserHPKey.java

Source

// Description: Java7 implementation of a SecUser history primary key object.

/*
 *   CF Customer Information Managerment template model
 *
 *   Copyright (c) 2010-2014 Mark Sobkow
 *   
 *      Licensed under the Apache License, Version 2.0 (the "License");
 *      you may not use this file except in compliance with the License.
 *      You may obtain a copy of the License at
 *   
 *          http://www.apache.org/licenses/LICENSE-2.0
 *   
 *      Unless required by applicable law or agreed to in writing, software
 *      distributed under the License is distributed on an "AS IS" BASIS,
 *      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *      See the License for the specific language governing permissions and
 *      limitations under the License.
 *   
 * ***********************************************************************
 *
 *   Code manufactured by MSS Code Factory
 */

package net.sourceforge.msscodefactory.cfinternet.v2_0.CFInternet;

import java.lang.reflect.*;
import java.io.*;
import java.math.*;
import java.net.*;
import java.rmi.*;
import java.sql.*;
import java.text.*;
import java.util.*;
import net.sourceforge.msscodefactory.cflib.v1_11.CFLib.*;
import org.apache.commons.codec.binary.Base64;

/*
 *   CFInternetSecUserHPKey History Primary Key for SecUser
    
 *      requiredSecUserId   Required object attribute SecUserId. */
public class CFInternetSecUserHPKey extends CFInternetHPKey implements Comparable<Object>, Serializable {

    protected UUID requiredSecUserId;

    public CFInternetSecUserHPKey() {
        super();
        requiredSecUserId = UUID.fromString(CFInternetSecUserBuff.SECUSERID_INIT_VALUE.toString());

    }

    public UUID getRequiredSecUserId() {
        return (requiredSecUserId);
    }

    public void setRequiredSecUserId(UUID value) {
        if (value == null) {
            throw CFLib.getDefaultExceptionFactory().newNullArgumentException(getClass(), "setRequiredSecUserId", 1,
                    "value");
        }
        requiredSecUserId = value;
    }

    public boolean equals(Object obj) {
        if (obj == null) {
            return (false);
        } else if (obj instanceof CFInternetSecUserHPKey) {
            CFInternetSecUserHPKey rhs = (CFInternetSecUserHPKey) obj;
            {
                long lhsClusterId = getAuditClusterId();
                long rhsClusterId = rhs.getAuditClusterId();
                if (lhsClusterId != rhsClusterId) {
                    return (false);
                }
            }
            {
                Calendar lhsAuditStamp = getAuditStamp();
                Calendar rhsAuditStamp = rhs.getAuditStamp();
                if (lhsAuditStamp != null) {
                    if (rhsAuditStamp != null) {
                        if (!lhsAuditStamp.equals(rhsAuditStamp)) {
                            return (false);
                        }
                    } else {
                        return (false);
                    }
                } else {
                    return (false);
                }
            }
            {
                short lhsActionId = getAuditActionId();
                short rhsActionId = rhs.getAuditActionId();
                if (lhsActionId != rhsActionId) {
                    return (false);
                }
            }
            {
                int lhsRevision = getRequiredRevision();
                int rhsRevision = rhs.getRequiredRevision();
                if (lhsRevision != rhsRevision) {
                    return (false);
                }
            }
            {
                UUID lhsAuditSessionId = getAuditSessionId();
                UUID rhsAuditSessionId = rhs.getAuditSessionId();
                if (lhsAuditSessionId != null) {
                    if (rhsAuditSessionId != null) {
                        if (!lhsAuditSessionId.equals(rhsAuditSessionId)) {
                            return (false);
                        }
                    } else {
                        return (false);
                    }
                } else {
                    return (false);
                }
            }
            if (!getRequiredSecUserId().equals(rhs.getRequiredSecUserId())) {
                return (false);
            }
            return (true);
        } else if (obj instanceof CFInternetHPKey) {
            CFInternetHPKey rhs = (CFInternetHPKey) obj;
            {
                long lhsClusterId = getAuditClusterId();
                long rhsClusterId = rhs.getAuditClusterId();
                if (lhsClusterId != rhsClusterId) {
                    return (false);
                }
            }
            {
                Calendar lhsAuditStamp = getAuditStamp();
                Calendar rhsAuditStamp = rhs.getAuditStamp();
                if (lhsAuditStamp != null) {
                    if (rhsAuditStamp != null) {
                        if (!lhsAuditStamp.equals(rhsAuditStamp)) {
                            return (false);
                        }
                    } else {
                        return (false);
                    }
                } else {
                    return (false);
                }
            }
            {
                short lhsActionId = getAuditActionId();
                short rhsActionId = rhs.getAuditActionId();
                if (lhsActionId != rhsActionId) {
                    return (false);
                }
            }
            {
                int lhsRevision = getRequiredRevision();
                int rhsRevision = rhs.getRequiredRevision();
                if (lhsRevision != rhsRevision) {
                    return (false);
                }
            }
            {
                UUID lhsAuditSessionId = getAuditSessionId();
                UUID rhsAuditSessionId = rhs.getAuditSessionId();
                if (lhsAuditSessionId != null) {
                    if (rhsAuditSessionId != null) {
                        if (!lhsAuditSessionId.equals(rhsAuditSessionId)) {
                            return (false);
                        }
                    } else {
                        return (false);
                    }
                } else {
                    return (false);
                }
            }
            return (true);
        } else if (obj instanceof CFInternetSecUserPKey) {
            CFInternetSecUserPKey rhs = (CFInternetSecUserPKey) obj;
            if (!getRequiredSecUserId().equals(rhs.getRequiredSecUserId())) {
                return (false);
            }
            return (true);
        } else if (obj instanceof CFInternetSecUserHBuff) {
            CFInternetSecUserHBuff rhs = (CFInternetSecUserHBuff) obj;
            {
                long lhsClusterId = getAuditClusterId();
                long rhsClusterId = rhs.getAuditClusterId();
                if (lhsClusterId != rhsClusterId) {
                    return (false);
                }
            }
            {
                Calendar lhsAuditStamp = getAuditStamp();
                Calendar rhsAuditStamp = rhs.getAuditStamp();
                if (lhsAuditStamp != null) {
                    if (rhsAuditStamp != null) {
                        if (!lhsAuditStamp.equals(rhsAuditStamp)) {
                            return (false);
                        }
                    } else {
                        return (false);
                    }
                } else {
                    return (false);
                }
            }
            {
                short lhsActionId = getAuditActionId();
                short rhsActionId = rhs.getAuditActionId();
                if (lhsActionId != rhsActionId) {
                    return (false);
                }
            }
            {
                int lhsRevision = getRequiredRevision();
                int rhsRevision = rhs.getRequiredRevision();
                if (lhsRevision != rhsRevision) {
                    return (false);
                }
            }
            {
                UUID lhsAuditSessionId = getAuditSessionId();
                UUID rhsAuditSessionId = rhs.getAuditSessionId();
                if (lhsAuditSessionId != null) {
                    if (rhsAuditSessionId != null) {
                        if (!lhsAuditSessionId.equals(rhsAuditSessionId)) {
                            return (false);
                        }
                    } else {
                        return (false);
                    }
                } else {
                    return (false);
                }
            }
            if (!getRequiredSecUserId().equals(rhs.getRequiredSecUserId())) {
                return (false);
            }
            if (!getRequiredSecUserId().equals(rhs.getRequiredSecUserId())) {
                return (false);
            }
            return (true);
        } else if (obj instanceof CFInternetSecUserBuff) {
            CFInternetSecUserBuff rhs = (CFInternetSecUserBuff) obj;
            if (!getRequiredSecUserId().equals(rhs.getRequiredSecUserId())) {
                return (false);
            }
            return (true);
        } else {
            return (false);
        }
    }

    public int hashCode() {
        int hashCode = super.hashCode();
        hashCode = hashCode + getRequiredSecUserId().hashCode();
        return (hashCode & 0x7fffffff);
    }

    public int compareTo(Object obj) {
        if (obj == null) {
            return (-1);
        } else if (obj instanceof CFInternetSecUserHBuff) {
            CFInternetSecUserHBuff rhs = (CFInternetSecUserHBuff) obj;
            int retval = 0;
            {
                long lhsAuditClusterId = getAuditClusterId();
                long rhsAuditClusterId = rhs.getAuditClusterId();
                if (lhsAuditClusterId < rhsAuditClusterId) {
                    return (-1);
                } else if (lhsAuditClusterId > rhsAuditClusterId) {
                    return (1);
                }
            }
            {
                Calendar lhsAuditStamp = getAuditStamp();
                Calendar rhsAuditStamp = rhs.getAuditStamp();
                if (lhsAuditStamp == null) {
                    if (rhsAuditStamp != null) {
                        return (-1);
                    }
                } else if (rhsAuditStamp == null) {
                    return (1);
                } else {
                    int cmpstat = lhsAuditStamp.compareTo(rhsAuditStamp);
                    if (cmpstat != 0) {
                        return (cmpstat);
                    }
                }
            }
            {
                short lhsAuditActionId = getAuditActionId();
                short rhsAuditActionId = rhs.getAuditActionId();
                if (lhsAuditActionId < rhsAuditActionId) {
                    return (-1);
                } else if (lhsAuditActionId > rhsAuditActionId) {
                    return (1);
                }
            }
            {
                int lhsRequiredRevision = getRequiredRevision();
                int rhsRequiredRevision = rhs.getRequiredRevision();
                if (lhsRequiredRevision < rhsRequiredRevision) {
                    return (-1);
                } else if (lhsRequiredRevision > rhsRequiredRevision) {
                    return (1);
                }
            }
            {
                UUID lhsAuditSessionId = getAuditSessionId();
                UUID rhsAuditSessionId = rhs.getAuditSessionId();
                if (lhsAuditSessionId == null) {
                    if (rhsAuditSessionId != null) {
                        return (-1);
                    }
                } else if (rhsAuditSessionId == null) {
                    return (1);
                } else {
                    int cmpstat = lhsAuditSessionId.compareTo(rhsAuditSessionId);
                    if (cmpstat != 0) {
                        return (cmpstat);
                    }
                }
            }
            {
                int cmp = getRequiredSecUserId().compareTo(rhs.getRequiredSecUserId());
                if (cmp != 0) {
                    return (cmp);
                }
            }
            return (0);
        } else if (obj instanceof CFInternetSecUserHPKey) {
            CFInternetSecUserHPKey rhs = (CFInternetSecUserHPKey) obj;
            {
                long lhsAuditClusterId = getAuditClusterId();
                long rhsAuditClusterId = rhs.getAuditClusterId();
                if (lhsAuditClusterId < rhsAuditClusterId) {
                    return (-1);
                } else if (lhsAuditClusterId > rhsAuditClusterId) {
                    return (1);
                }
            }
            {
                Calendar lhsAuditStamp = getAuditStamp();
                Calendar rhsAuditStamp = rhs.getAuditStamp();
                if (lhsAuditStamp == null) {
                    if (rhsAuditStamp != null) {
                        return (-1);
                    }
                } else if (rhsAuditStamp == null) {
                    return (1);
                } else {
                    int cmpstat = lhsAuditStamp.compareTo(rhsAuditStamp);
                    if (cmpstat != 0) {
                        return (cmpstat);
                    }
                }
            }
            {
                short lhsAuditActionId = getAuditActionId();
                short rhsAuditActionId = rhs.getAuditActionId();
                if (lhsAuditActionId < rhsAuditActionId) {
                    return (-1);
                } else if (lhsAuditActionId > rhsAuditActionId) {
                    return (1);
                }
            }
            {
                int lhsRequiredRevision = getRequiredRevision();
                int rhsRequiredRevision = rhs.getRequiredRevision();
                if (lhsRequiredRevision < rhsRequiredRevision) {
                    return (-1);
                } else if (lhsRequiredRevision > rhsRequiredRevision) {
                    return (1);
                }
            }
            {
                UUID lhsAuditSessionId = getAuditSessionId();
                UUID rhsAuditSessionId = rhs.getAuditSessionId();
                if (lhsAuditSessionId == null) {
                    if (rhsAuditSessionId != null) {
                        return (-1);
                    }
                } else if (rhsAuditSessionId == null) {
                    return (1);
                } else {
                    int cmpstat = lhsAuditSessionId.compareTo(rhsAuditSessionId);
                    if (cmpstat != 0) {
                        return (cmpstat);
                    }
                }
            }
            {
                int cmp = getRequiredSecUserId().compareTo(rhs.getRequiredSecUserId());
                if (cmp != 0) {
                    return (cmp);
                }
            }
            return (0);
        } else if (obj instanceof CFInternetHPKey) {
            CFInternetHPKey rhs = (CFInternetHPKey) obj;
            {
                long lhsAuditClusterId = getAuditClusterId();
                long rhsAuditClusterId = rhs.getAuditClusterId();
                if (lhsAuditClusterId < rhsAuditClusterId) {
                    return (-1);
                } else if (lhsAuditClusterId > rhsAuditClusterId) {
                    return (1);
                }
            }
            {
                Calendar lhsAuditStamp = getAuditStamp();
                Calendar rhsAuditStamp = rhs.getAuditStamp();
                if (lhsAuditStamp == null) {
                    if (rhsAuditStamp != null) {
                        return (-1);
                    }
                } else if (rhsAuditStamp == null) {
                    return (1);
                } else {
                    int cmpstat = lhsAuditStamp.compareTo(rhsAuditStamp);
                    if (cmpstat != 0) {
                        return (cmpstat);
                    }
                }
            }
            {
                short lhsAuditActionId = getAuditActionId();
                short rhsAuditActionId = rhs.getAuditActionId();
                if (lhsAuditActionId < rhsAuditActionId) {
                    return (-1);
                } else if (lhsAuditActionId > rhsAuditActionId) {
                    return (1);
                }
            }
            {
                int lhsRequiredRevision = getRequiredRevision();
                int rhsRequiredRevision = rhs.getRequiredRevision();
                if (lhsRequiredRevision < rhsRequiredRevision) {
                    return (-1);
                } else if (lhsRequiredRevision > rhsRequiredRevision) {
                    return (1);
                }
            }
            {
                UUID lhsAuditSessionId = getAuditSessionId();
                UUID rhsAuditSessionId = rhs.getAuditSessionId();
                if (lhsAuditSessionId == null) {
                    if (rhsAuditSessionId != null) {
                        return (-1);
                    }
                } else if (rhsAuditSessionId == null) {
                    return (1);
                } else {
                    int cmpstat = lhsAuditSessionId.compareTo(rhsAuditSessionId);
                    if (cmpstat != 0) {
                        return (cmpstat);
                    }
                }
            }
            return (0);
        } else if (obj instanceof CFInternetSecUserPKey) {
            CFInternetSecUserPKey rhs = (CFInternetSecUserPKey) obj;
            {
                int cmp = getRequiredSecUserId().compareTo(rhs.getRequiredSecUserId());
                if (cmp != 0) {
                    return (cmp);
                }
            }
            return (0);
        } else if (obj instanceof CFInternetSecUserBuff) {
            CFInternetSecUserBuff rhs = (CFInternetSecUserBuff) obj;
            {
                int cmp = getRequiredSecUserId().compareTo(rhs.getRequiredSecUserId());
                if (cmp != 0) {
                    return (cmp);
                }
            }
            return (0);
        } else {
            throw CFLib.getDefaultExceptionFactory().newUnsupportedClassException(getClass(), "compareTo", "obj",
                    obj, "CFInternetSecUserHPKey, CFInternetSecUserPKey, CFInternetSecUserBuff");
        }
    }

    public String toString() {
        String ret = "<CFInternetSecUserHPKey" + " RequiredSecUserId=" + "\"" + getRequiredSecUserId().toString()
                + "\"" + " RequiredRevision=\"" + Integer.toString(getRequiredRevision()) + "\"" + "/>";
        return (ret);
    }
}