X-Git-Url: https://oss.titaniummirror.com/gitweb?a=blobdiff_plain;f=libjava%2Fjavax%2Fnaming%2Fldap%2FControl.java;fp=libjava%2Fjavax%2Fnaming%2Fldap%2FControl.java;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=156af9661ae6b810bf8480d2917bb08412f1eddd;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/libjava/javax/naming/ldap/Control.java b/libjava/javax/naming/ldap/Control.java deleted file mode 100644 index 156af966..00000000 --- a/libjava/javax/naming/ldap/Control.java +++ /dev/null @@ -1,25 +0,0 @@ -/* Copyright (C) 2001 Free Software Foundation - - This file is part of libgcj. - -This software is copyrighted work licensed under the terms of the -Libgcj License. Please consult the file "LIBGCJ_LICENSE" for -details. */ - -package javax.naming.ldap; -import java.io.Serializable; - -/** - * @author Warren Levy - * @date June 1, 2001 - */ - -public interface Control extends Serializable -{ - public static final boolean CRITICAL = true; - public static final boolean NONCRITICAL = false; - - public String getID(); - public boolean isCritical(); - public byte[] getEncodedValue(); -}