| | |
| | | * |
| | | * |
| | | * Copyright 2006-2010 Sun Microsystems, Inc. |
| | | * Portions Copyright 2013 ForgeRock AS. |
| | | */ |
| | | package org.opends.server.replication.plugin; |
| | | |
| | |
| | | } |
| | | |
| | | /** |
| | | * Get the String form of the attribute. |
| | | * @return The String form of the attribute. |
| | | */ |
| | | public String getStringValue() |
| | | { |
| | | return stringValue; |
| | | } |
| | | |
| | | /** |
| | | * Get the Attribute Value. |
| | | * @return The Attribute Value. |
| | | */ |
| | |
| | | */ |
| | | public boolean isADDOperation() |
| | | { |
| | | return ((attrType == null) && (ismodDN == false)); |
| | | return attrType == null && !ismodDN; |
| | | } |
| | | |
| | | /** |
| | |
| | | */ |
| | | public boolean isMODDNOperation() |
| | | { |
| | | return ((attrType == null) && (ismodDN == true)); |
| | | return attrType == null && ismodDN; |
| | | } |
| | | } |